-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tsjs-di",
"version": "1.0.1",
"description": "Typescript (decorator/annotation) and javascript dependency injector",
"keywords": [
"dependency",
"inject",
"injector",
"typescript",
"javascript",
"decorator"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Celleb/tsjs-di.git",
"author": "Jonas Tomanga",
"license": "MIT",
"scripts": {
"build": "gulp scripts && gulp tests",
"watch": "gulp watch",
"test": "nyc mocha"
},
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.44",
"@types/node": "^8.5.2",
"@types/reflect-metadata": "^0.0.5",
"@types/sinon": "^4.1.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"debug": "^3.1.0",
"fancy-log": "^1.3.2",
"gulp": "^3.9.1",
"gulp-flatten": "^0.3.1",
"gulp-mocha": "^4.3.1",
"gulp-typescript": "^3.2.3",
"merge2": "^1.2.1",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"sinon": "^4.1.3",
"source-map-support": "^0.5.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"nyc": {
"extension": [
"src/**/*.ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"src/**/*.spec.ts",
"test/**",
"*.js"
],
"all": true
}
}