-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 843 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "node-qs-serialization",
"version": "0.0.2",
"description": "Serialization and deserialization of an URL its QueryString based on and compatible with jQuery's $.param method",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/edwardsmit/node-qs-serialization.git"
},
"keywords": [
"nodejs",
"jquery",
"deparam",
"param",
"querystring"
],
"author": "Edward Smit <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"mocha": "~1.12.0",
"chai": "~1.7.2",
"grunt": "^0.4.4",
"matchdep": "^0.3.0",
"grunt-mocha-test": "^0.10.0",
"grunt-jscs-checker": "^0.4.1",
"grunt-contrib-jshint": "^0.10.0"
},
"dependencies": {}
}