-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
{
"name": "container-ioc",
"version": "1.7.18",
"description": "Dependency Injection and Inversion of Control (IoC) container",
"author": "Alexander Kozlov",
"repository": {
"type": "git",
"url": "git+https://github.com/typesoft/container-ioc.git"
},
"keywords": [
"ioc",
"container",
"dependency",
"di",
"dependency injection",
"service locator",
"inject",
"injection",
"inverstion of control",
"injector",
"injectable",
"interface",
"abstraction",
"javascript",
"js",
"es6",
"es7",
"es8",
"node",
"nodejs",
"node.js",
"decorator",
"metadata",
"reflection",
"browser"
],
"license": "ISC",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"start": "node ./node_modules/gulp/bin/gulp.js",
"dev": "node ./node_modules/gulp/bin/gulp.js dev",
"compile": "node ./node_modules/gulp/bin/gulp.js compile",
"test": "node ./node_modules/gulp/bin/gulp.js test",
"dist": "node ./node_modules/gulp/bin/gulp.js dist"
},
"bugs": {
"url": "https://github.com/thohoh/container-ioc/issues"
},
"homepage": "https://github.com/thohoh/container-ioc#readme",
"devDependencies": {
"@types/chai": "4.0.4",
"@types/core-js": "0.9.43",
"@types/mocha": "2.2.43",
"chai": "4.1.2",
"gulp": "3.9.1",
"gulp-mocha": "4.3.1",
"gulp-tslint": "8.1.2",
"gulp-typescript": "3.2.2",
"mocha": "3.5.3",
"tslint": "5.7.0",
"tslint-microsoft-contrib": "5.0.1",
"typescript": "2.5.3"
}
}