-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
{
"name": "egg-di",
"version": "1.2.1",
"description": "egg dependency injection lib",
"main": "index.js",
"files": [
"lib/*",
"index.js",
"index.d.ts"
],
"scripts": {
"cov": "nyc --reporter=html --reporter=text mocha test/*.test.ts",
"ci": "npm run cov && nyc report --reporter=text-lcov | coveralls",
"test": "mocha test/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shepherdwind/egg-di.git"
},
"keywords": [
"egg",
"di"
],
"author": "Eward.song",
"license": "ISC",
"bugs": {
"url": "https://github.com/shepherdwind/egg-di/issues"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.0",
"@types/should": "^11.2.0",
"coveralls": "^2.13.3",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"should": "^13.1.0",
"source-map-support": "^0.5.9",
"ts-node": "^3.0.6",
"tslib": "^1.9.3",
"tslint": "^5.4.3",
"tslint-config-prettier": "^1.1.0",
"tslint-config-standard": "^6.0.0",
"typescript": "^2.3.4"
},
"nyc": {
"include": [
"index.js"
],
"reporter": [
"html"
]
},
"homepage": "https://github.com/shepherdwind/egg-di#readme",
"dependencies": {
"reflect-metadata": "^0.1.12"
}
}