-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
90 lines (90 loc) · 2.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "web-apis-investigator",
"version": "0.0.1",
"description": "Investigate web APIs through various means",
"main": "serve.js",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "webpack --config ./config/webpack.dev.config.es6.js",
"coverage": "JASMINE_CONFIG_PATH=./jasmine_coverage.json istanbul cover --dir .coverage -- jasmine",
"deploy": "webpack --config ./config/webpack.prod.config.es6.js",
"deps": "echo nodepsrightnow",
"develop": "webpack --watch --progress --config ./config/webpack.prod.config.es6.js",
"integration": "JASMINE_CONFIG_PATH=./jasmine_integration.json jasmine",
"lint": "webpack --config ./config/webpack.strict.config.es6.js",
"postinstall": "npm run deps",
"rebuild": "npm run deps && webpack --config ./config/webpack.dev.config.es6.js",
"repl": "node",
"serve": "bash scripts/serve.sh",
"test": "JASMINE_CONFIG_PATH=./jasmine_all.json jasmine",
"unit": "JASMINE_CONFIG_PATH=./jasmine_unit.json jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdittmer/web-apis.git"
},
"keywords": [
"web",
"platform",
"APIs",
"browser"
],
"author": "Mark Dittmer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mdittmer/web-apis/issues"
},
"homepage": "https://github.com/mdittmer/web-apis#readme",
"dependencies": {
"babel-runtime": "^6.11.6",
"blueimp-md5": "^2.6.0",
"body-parser": "^1.18.3",
"cheerio": "^0.22.0",
"chrome-remote-interface": "^0.16.1",
"colors": "^1.3.0",
"connect-timeout": "^1.7.0",
"expect": "^1.20.2",
"express": "^4.16.3",
"git-rev": "^0.2.1",
"glob": "^7.1.1",
"glob-stream": "^5.3.5",
"id-js": "git://github.com/mdittmer/id-js.git",
"json-prune": "^1.0.1",
"json-stable-stringify": "^1.0.1",
"node-glob": "^1.2.0",
"object-graph-js": "git://github.com/mdittmer/object-graph-js.git",
"request": "^2.87.0",
"request-promise": "^4.1.1",
"request-promise-native": "^1.0.3",
"simple-serialization": "git://github.com/mdittmer/simple-serialization.git",
"webidl2": "^2.0.11",
"webidl2-js": "git://github.com/mdittmer/webidl2-js.git",
"ya-stdlib-js": "git://github.com/mdittmer/ya-stdlib-js.git",
"yargs": "^6.4.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"connect-timeout": "^1.7.0",
"doctoc": "^1.3.1",
"eslint": "^3.5.0",
"eslint-config-google": "^0.6.0",
"eslint-loader": "^1.6.1",
"hyperquest": "^2.1.3",
"istanbul": "^0.4.5",
"jasmine": "^2.99.0",
"phantom": "^3.0.0",
"promise-retry": "^1.1.1",
"run-sequence": "^1.2.2",
"selenium-webdriver": "^3.4.0",
"webpack": "^1.13.2"
},
"eslintConfig": {
"extends": "google"
}
}