-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "dora-plugin-proxy",
"version": "0.9.0",
"repository": {
"type": "git",
"url": "https://github.com/dora-js/dora-plugin-proxy"
},
"homepage": "https://github.com/dora-js/dora-plugin-proxy",
"author": "chencheng <sorrycc@gmail.com>",
"license": "MIT",
"main": "./lib",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts",
"debug": "./node_modules/.bin/mocha --require babel-core/register --no-timeouts",
"lint": "eslint --ext .js src",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint"
],
"dependencies": {
"crequire": "^1.7.0",
"dora-anyproxy": "^3.9.3",
"is-plain-object": "~2.0.1",
"mime-db": "~1.21.0",
"mime-type": "~3.0.4",
"path-to-regexp": "~1.2.1",
"qs": "~6.0.1"
},
"devDependencies": {
"babel-cli": "~6.4.0",
"babel-core": "~6.4.5",
"babel-istanbul": "^0.6.0",
"babel-plugin-add-module-exports": "~0.1.1",
"babel-preset-es2015": "~6.3.13",
"babel-preset-stage-0": "~6.3.13",
"coveralls": "^2.11.6",
"dora": "0.x",
"eslint": "~1.10.3",
"eslint-config-airbnb": "~3.1.0",
"expect": "~1.13.0",
"mocha": "~2.4.1",
"pre-commit": "~1.1.2",
"request": "^2.67.0"
},
"peerDependencies": {
"dora": "0.4.x"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"files": [
"lib"
]
}