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.11.0",
|
---|
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 | "side-channel": "^1.0.4"
|
---|
34 | },
|
---|
35 | "devDependencies": {
|
---|
36 | "@ljharb/eslint-config": "^21.0.0",
|
---|
37 | "aud": "^2.0.0",
|
---|
38 | "browserify": "^16.5.2",
|
---|
39 | "eclint": "^2.8.1",
|
---|
40 | "eslint": "=8.8.0",
|
---|
41 | "evalmd": "^0.0.19",
|
---|
42 | "for-each": "^0.3.3",
|
---|
43 | "has-symbols": "^1.0.3",
|
---|
44 | "iconv-lite": "^0.5.1",
|
---|
45 | "in-publish": "^2.0.1",
|
---|
46 | "mkdirp": "^0.5.5",
|
---|
47 | "npmignore": "^0.3.0",
|
---|
48 | "nyc": "^10.3.2",
|
---|
49 | "object-inspect": "^1.12.2",
|
---|
50 | "qs-iconv": "^1.0.4",
|
---|
51 | "safe-publish-latest": "^2.0.0",
|
---|
52 | "safer-buffer": "^2.1.2",
|
---|
53 | "tape": "^5.5.3"
|
---|
54 | },
|
---|
55 | "scripts": {
|
---|
56 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
---|
57 | "prepublishOnly": "safe-publish-latest && npm run dist",
|
---|
58 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
---|
59 | "pretest": "npm run --silent readme && npm run --silent lint",
|
---|
60 | "test": "npm run tests-only",
|
---|
61 | "tests-only": "nyc tape 'test/**/*.js'",
|
---|
62 | "posttest": "aud --production",
|
---|
63 | "readme": "evalmd README.md",
|
---|
64 | "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
|
---|
65 | "lint": "eslint --ext=js,mjs .",
|
---|
66 | "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
|
---|
67 | },
|
---|
68 | "license": "BSD-3-Clause",
|
---|
69 | "publishConfig": {
|
---|
70 | "ignore": [
|
---|
71 | "!dist/*",
|
---|
72 | "bower.json",
|
---|
73 | "component.json",
|
---|
74 | ".github/workflows"
|
---|
75 | ]
|
---|
76 | }
|
---|
77 | }
|
---|