-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 1.68 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
{
"name": "egg-aop",
"version": "0.5.3",
"description": "aop for egg.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"app/**/*.js",
"app/**/*.d.ts",
"config/**/*.js",
"config/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.d.ts",
"typings/**/*.d.ts"
],
"eggPlugin": {
"name": "aop"
},
"egg": {
"typescript": true
},
"dependencies": {
"power-di": "^1.4.16",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/mocha": "^5.1.0",
"@types/node": "^9.6.5",
"@types/supertest": "^2.0.4",
"autod": "^3.0.1",
"co": "^4.6.0",
"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",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"typescript": "~2.8.1"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test -r egg-ts-helper/register",
"cov": "egg-bin cov -r egg-ts-helper/register",
"lint": "tslint .",
"ci": "npm run cov",
"autod": "autod",
"ts": "rimraf app/**/*.js lib/**/*.js && tsc",
"prepublish": "npm run ts",
"postpublish": "node scripts/published.js"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": "https://github.com/zhang740/egg-aop.git"
},
"eslintIgnore": [
"coverage"
],
"keywords": [
"egg",
"egg-aop",
"ts",
"aop"
],
"author": "zhang740",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhang740/egg-aop/issues"
},
"homepage": "https://github.com/zhang740/egg-aop#readme"
}