UNPKG

1.95 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.9.4",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/ljharb/qs.git"
9 },
10 "funding": {
11 "url": "https://github.com/sponsors/ljharb"
12 },
13 "main": "lib/index.js",
14 "contributors": [
15 {
16 "name": "Jordan Harband",
17 "email": "ljharb@gmail.com",
18 "url": "http://ljharb.codes"
19 }
20 ],
21 "keywords": [
22 "querystring",
23 "qs",
24 "query",
25 "url",
26 "parse",
27 "stringify"
28 ],
29 "engines": {
30 "node": ">=0.6"
31 },
32 "dependencies": {},
33 "devDependencies": {
34 "@ljharb/eslint-config": "^16.0.0",
35 "browserify": "^16.5.1",
36 "covert": "^1.1.1",
37 "eclint": "^2.8.1",
38 "eslint": "^6.8.0",
39 "evalmd": "^0.0.19",
40 "for-each": "^0.3.3",
41 "has-symbols": "^1.0.1",
42 "iconv-lite": "^0.5.1",
43 "mkdirp": "^0.5.4",
44 "object-inspect": "^1.7.0",
45 "qs-iconv": "^1.0.4",
46 "safe-publish-latest": "^1.1.4",
47 "safer-buffer": "^2.1.2",
48 "tape": "^5.0.0"
49 },
50 "scripts": {
51 "prepublish": "safe-publish-latest && npm run dist",
52 "pretest": "npm run --silent readme && npm run --silent lint",
53 "test": "npm run --silent coverage",
54 "tests-only": "node test",
55 "posttest": "npx aud --production",
56 "readme": "evalmd README.md",
57 "postlint": "eclint check * lib/* test/*",
58 "lint": "eslint lib/*.js test/*.js",
59 "coverage": "covert test",
60 "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
61 },
62 "license": "BSD-3-Clause",
63 "greenkeeper": {
64 "ignore": [
65 "iconv-lite",
66 "mkdirp"
67 ]
68 }
69}