qs 6.0.1 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,31 +1,46 @@
1
1
  {
2
2
  "name": "qs",
3
3
  "description": "A querystring parser that supports nesting and arrays, with a depth limit",
4
- "homepage": "https://github.com/hapijs/qs",
5
- "version": "6.0.1",
4
+ "homepage": "https://github.com/ljharb/qs",
5
+ "version": "6.1.0",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/hapijs/qs.git"
8
+ "url": "https://github.com/ljharb/qs.git"
9
9
  },
10
10
  "main": "lib/index.js",
11
+ "contributors": [
12
+ {
13
+ "name": "Jordan Harband",
14
+ "email": "ljharb@gmail.com",
15
+ "url": "http://ljharb.codes"
16
+ }
17
+ ],
11
18
  "keywords": [
12
19
  "querystring",
13
20
  "qs"
14
21
  ],
15
22
  "engines": {
16
- "node": ">=4.0.0"
23
+ "node": ">=0.6"
17
24
  },
18
25
  "dependencies": {},
19
26
  "devDependencies": {
20
- "browserify": "^10.2.1",
21
- "code": "2.x.x",
22
- "lab": "7.x.x"
27
+ "browserify": "^12.0.1",
28
+ "tape": "^4.3.0",
29
+ "covert": "^1.1.0",
30
+ "mkdirp": "^0.5.1",
31
+ "eslint": "^1.10.3",
32
+ "@ljharb/eslint-config": "^1.6.1",
33
+ "parallelshell": "^2.0.0",
34
+ "evalmd": "^0.0.16"
23
35
  },
24
36
  "scripts": {
25
- "test": "lab -a code -t 100 -L",
26
- "test-tap": "lab -a code -r tap -o tests.tap",
27
- "test-cov-html": "lab -a code -r html -o coverage.html",
28
- "dist": "browserify --standalone Qs lib/index.js > dist/qs.js"
37
+ "test": "parallelshell 'npm run readme' 'npm run lint' 'npm run coverage'",
38
+ "tests-only": "node test",
39
+ "readme": "evalmd README.md",
40
+ "lint": "eslint lib/*.js text/*.js",
41
+ "coverage": "covert test",
42
+ "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js",
43
+ "prepublish": "npm run dist"
29
44
  },
30
45
  "license": "BSD-3-Clause"
31
46
  }
package/test/index.js ADDED
@@ -0,0 +1,5 @@
1
+ require('./parse');
2
+
3
+ require('./stringify');
4
+
5
+ require('./utils');