-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "nvpqs",
"version": "2.0.5",
"description": "NVP querystring parser",
"main": "lib/index.js",
"scripts": {
"changelog": "github_changelog_generator --header-label='# Changelog'",
"test": "lab -a code -t 100 -L",
"test-tap": "lab -a code -r tap -o tests.tap",
"test-cov-html": "lab -a code -r html -o coverage.html",
"coveralls": "lab -r lcov | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ruiquelhas/nvpqs.git"
},
"keywords": [
"encoding",
"nvp",
"parse",
"qs",
"querystring",
"stringify"
],
"author": "Rui Quelhas <rfpquelhas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruiquelhas/nvpqs/issues"
},
"homepage": "https://github.com/ruiquelhas/nvpqs",
"dependencies": {
"dot-object": "1.x.x",
"lodash.isobject": "3.x.x",
"lodash.reduce": "4.x.x",
"lodash.some": "4.x.x",
"lodash.transform": "4.x.x"
},
"devDependencies": {
"code": "4.x.x",
"coveralls": "2.x.x",
"lab": "11.x.x"
},
"engines": {
"node": ">=4.0.0"
}
}