You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
754 B
30 lines
754 B
|
3 years ago
|
{
|
||
|
|
"name": "qs",
|
||
|
|
"description": "A querystring parser that supports nesting and arrays, with a depth limit",
|
||
|
|
"homepage": "https://github.com/hapijs/qs",
|
||
|
|
"version": "5.2.1",
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "https://github.com/hapijs/qs.git"
|
||
|
|
},
|
||
|
|
"main": "lib/index.js",
|
||
|
|
"keywords": [
|
||
|
|
"querystring",
|
||
|
|
"qs"
|
||
|
|
],
|
||
|
|
"engines": ">=0.10.40",
|
||
|
|
"dependencies": {},
|
||
|
|
"devDependencies": {
|
||
|
|
"browserify": "^10.2.1",
|
||
|
|
"code": "1.x.x",
|
||
|
|
"lab": "5.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"
|
||
|
|
}
|