This repository has been archived by the owner on Mar 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.63 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
{
"name": "egg-development-proxyagent",
"version": "1.0.0",
"description": "A proxy adapter for debugging httpclient on egg.",
"eggPlugin": {
"name": "proxyagent",
"env": ["local"]
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"egg-development"
],
"dependencies": {
"proxy-agent": "^2.0.0"
},
"devDependencies": {
"autod": "^2.7.1",
"egg": "^0.7.0",
"egg-bin": "^1.10.0",
"egg-ci": "^1.1.0",
"egg-mock": "^2.0.0",
"eslint": "^3.13.1",
"eslint-config-egg": "^3.2.0",
"proxy": "^0.2.4",
"supertest": "^2.0.1",
"webstorm-disable-index": "^1.1.2"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov",
"autod": "autod"
},
"files": [
"index.js",
"app.js",
"agent.js",
"config",
"app",
"lib"
],
"ci": {
"version": "6, 7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-development-proxyagent.git"
},
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-development-proxyagent#readme",
"author": "Roy Li <[email protected]>",
"license": "MIT",
"boilerplate": {
"name": "egg-boilerplate-plugin",
"version": "1.7.0",
"description": "boilerplate for egg plugin",
"repository": {
"type": "git",
"url": "[email protected]:eggjs/egg-boilerplate-plugin.git"
},
"homepage": "https://github.com/eggjs/egg-boilerplate-plugin"
}
}