-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"name": "@lchemy/di",
"description": "",
"version": "1.0.0-beta.4",
"contributors": [
"Jesse Zhang"
],
"repository": {
"type": "git",
"url": "https://github.com/lchemy/di.git"
},
"private": true,
"license": "ISC",
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"develop": "gulp develop",
"test": "gulp test",
"tslint": "gulp tslint",
"prepublishOnly": "echo 'Cannot publish the development files. Publish the built files instead.' && exit 1"
},
"dependencies": {
"inversify": "^5.0.1",
"reflect-metadata": "*"
},
"devDependencies": {
"@types/jest": "^23.3.8",
"coveralls": "^3.0.2",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-plumber": "^1.2.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0-alpha.3",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"merge2": "^1.2.3",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.1.4",
"vinyl-map": "^1.0.2"
}
}