-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "querystring-es3",
"id": "querystring-es3",
"version": "1.0.0-0",
"main": "dist/index.js",
"description": "Node API compliant querystring module for all browsers. (ES3 compatible)",
"scripts": {
"build": "babel src -d dist",
"prepare": "npm run build",
"prepublish": "npm run build",
"test": "npm-run-all build test:*",
"test:mocha": "mocha --require babel-register ./test/index.js",
"test:zuul": "zuul --no-coverage -- test"
},
"keywords": [
"commonjs",
"query",
"querystring",
"es3"
],
"author": "SpainTrain <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/SpainTrain/querystring-es3.git",
"web": "https://github.com/SpainTrain/querystring-es3"
},
"bugs": {
"url": "http://github.com/SpainTrain/querystring-es3/issues/"
},
"devDependencies": {
"assert": "~1.4.1",
"babel-cli": "~6.24.0",
"babel-preset-es2015": "~6.24.0",
"babel-preset-es2016": "~6.22.0",
"babel-preset-es2017": "~6.22.0",
"babel-preset-es3": "~1.0.1",
"babel-register": "~6.24.0",
"babelify": "~7.3.0",
"browserify": "~14.1.0",
"eslint": "~3.13.0",
"json3": "~3.3.2",
"mocha": "~3.2.0",
"npm-run-all": "~4.0.2",
"object-inspect": "~1.2.2",
"zuul": "~3.11.1",
"zuul-ngrok": "~4.0.0"
},
"engines": {
"node": ">=4"
},
"license": "MIT",
"dependencies": {
"buffer": "5.0.5"
}
}