This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
73 lines (73 loc) · 1.97 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
{
"name": "injection",
"version": "1.8.6",
"description": "A New IoC Container For All Node.js Application",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
"build_benchmark": "cd benchmark && midway-bin build -c",
"build": "npm run lint && midway-bin build -c",
"lint": "tslint --format prose -c ./tslint.json src/**/*.ts test/**/*.ts",
"test": "midway-bin test --ts",
"cov": "midway-bin cov --ts",
"ci": "npm run test",
"autod": "midway-bin autod",
"prepublishOnly": "npm run build",
"gen-api-ref": "midway-bin doc -o docs/.vuepress/dist/api-reference",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "node ./scripts/deploy_doc.js"
},
"keywords": [
"midway",
"IoC"
],
"files": [
"dist",
"src"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"gh-pages": "^1.2.0",
"git-hooks": "^1.1.10",
"inversify": "^5.0.1",
"lodash.join": "^4.0.1",
"midway-bin": "^1.3.0",
"sdk-base": "^3.4.0",
"sinon": "^7.2.2",
"supertest": "^3.1.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.0",
"tslint-midway-contrib": "^1.2.0",
"typescript": "^3.2.0",
"vuepress": "^0.14.8",
"webpack": "4.28.4",
"xmldom": "^0.1.27"
},
"dependencies": {
"camelcase": "^5.0.0",
"co": "^4.6.0",
"debug": "^4.1.1",
"is-type-of": "^1.2.1",
"lodash.assign": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.defaultsdeep": "^4.6.0",
"lodash.forown": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.keys": "^4.2.0",
"lodash.set": "^4.3.2",
"lodash.template": "^4.4.0",
"reflect-metadata": "^0.1.13"
},
"author": "Harry Chen <[email protected]>",
"repository": {
"type": "git",
"url": "http://github.com/midwayjs/injection.git"
}
}