UNPKG

1.58 kBJSONView Raw
1{
2 "name": "qs",
3 "description": "A querystring parser that supports nesting and arrays, with a depth limit",
4 "homepage": "https://github.com/ljharb/qs",
5 "version": "6.5.2",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/ljharb/qs.git"
9 },
10 "main": "lib/index.js",
11 "contributors": [
12 {
13 "name": "Jordan Harband",
14 "email": "ljharb@gmail.com",
15 "url": "http://ljharb.codes"
16 }
17 ],
18 "keywords": [
19 "querystring",
20 "qs"
21 ],
22 "engines": {
23 "node": ">=0.6"
24 },
25 "dependencies": {},
26 "devDependencies": {
27 "@ljharb/eslint-config": "^12.2.1",
28 "browserify": "^16.2.0",
29 "covert": "^1.1.0",
30 "editorconfig-tools": "^0.1.1",
31 "eslint": "^4.19.1",
32 "evalmd": "^0.0.17",
33 "iconv-lite": "^0.4.21",
34 "mkdirp": "^0.5.1",
35 "qs-iconv": "^1.0.4",
36 "safe-publish-latest": "^1.1.1",
37 "safer-buffer": "^2.1.2",
38 "tape": "^4.9.0"
39 },
40 "scripts": {
41 "prepublish": "safe-publish-latest && npm run dist",
42 "pretest": "npm run --silent readme && npm run --silent lint",
43 "test": "npm run --silent coverage",
44 "tests-only": "node test",
45 "readme": "evalmd README.md",
46 "prelint": "editorconfig-tools check * lib/* test/*",
47 "lint": "eslint lib/*.js test/*.js",
48 "coverage": "covert test",
49 "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
50 },
51 "license": "BSD-3-Clause"
52}