-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
106 lines (106 loc) · 2.42 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "egg-controller",
"version": "0.3.48",
"description": "controller for egg.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"typings/**/*.d.ts",
"bin/**/*.js",
"bin/**/*.d.ts",
"app/**/*.js",
"app/**/*.js",
"app/**/*.d.ts",
"config/**/*.js",
"config/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.njk",
"meta.js",
"meta.d.ts",
"error.js",
"error.d.ts",
"app.js",
"app.d.ts",
"agent.js",
"agent.d.ts"
],
"eggPlugin": {
"name": "controller",
"dependencies": [
"aop"
]
},
"egg": {
"typescript": true
},
"bin": {
"egg-controller": "./bin/index.js"
},
"dependencies": {
"@types/request": "^2.47.1",
"co": "^4.6.0",
"colorful": "^2.1.0",
"commander": "^2.17.1",
"egg-aop": "^0.5.2",
"jsencrypt": "^3.0.0-rc.1",
"openapi-generator": "^0.1.9",
"openapi3-ts": "^1.0.2",
"parameter": "^3.0.0",
"request": "^2.88.0",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/mocha": "^5.1.0",
"@types/node": "^10.7.1",
"@types/supertest": "^2.0.4",
"autod": "^3.0.1",
"egg-bin": "^4.7.0",
"egg-ci": "^1.8.0",
"egg-mock": "^3.17.0",
"egg-ts-helper": "^1.6.0",
"egg": "^2.7.1",
"rimraf": "^2.6.2",
"supertest": "^3.0.0",
"tslint": "^5.9.1",
"typescript": "^3.7.3"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"clean:test": "rimraf test/fixtures/**/run/*.json",
"test": "npm run clean:test && npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test -r egg-ts-helper/register --full-trace",
"cov": "egg-bin cov -r egg-ts-helper/register",
"lint": "tslint .",
"ci": "npm run cov",
"autod": "autod",
"ts": "rimraf app/**/*.js lib/**/*.js app/**/*.d.ts lib/**/*.d.ts && tsc",
"debug": "tsc -w -p tsconfig.debug.json",
"prepublish": "npm run test && npm run ts",
"postpublish": "node scripts/published.js"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": "https://github.com/zhang740/egg-controller.git"
},
"eslintIgnore": [
"coverage"
],
"keywords": [
"egg",
"egg-controller",
"ts",
"controller"
],
"author": "zhang740",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhang740/egg-controller/issues"
},
"homepage": "https://github.com/zhang740/egg-controller#readme"
}