forked from ljharb/qs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 823 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
34
{
"name": "qs",
"description": "A querystring parser that supports nesting and arrays, with a depth limit",
"homepage": "https://github.com/hapijs/qs",
"version": "6.0.0",
"repository": {
"type": "git",
"url": "https://github.com/hapijs/qs.git"
},
"main": "lib/index.js",
"keywords": [
"querystring",
"qs"
],
"engines": {
"node": ">=4.0.0"
},
"dependencies": {},
"devDependencies": {
"browserify": "^10.2.1",
"code": "2.x.x",
"lab": "7.x.x"
},
"scripts": {
"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",
"dist": "browserify --standalone Qs lib/index.js > dist/qs.js"
},
"license": "BSD-3-Clause",
"browserify": {
"transform": ["babelify"]
}
}