-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 906 Bytes
/
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
{
"name": "huject",
"version": "1.4.1",
"description": "Typescript dependency injection container for humans",
"main": "./src/index.js",
"scripts": {
"test": "grunt test"
},
"keywords": [
"typescript",
"ioc",
"di",
"dependencyinjection"
],
"typescript": {
"definition": "huject.d.ts"
},
"author": {
"name": "Alexey Svetliakov",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/asvetliakov/huject.git"
},
"license": "ISC",
"devDependencies": {
"chai": "^3.4.1",
"grunt": "^0.4.5",
"grunt-mocha-test": "^0.12.7",
"grunt-ts": "^5.3.0-beta.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"source-map-support": "^0.4.0",
"typescript": "^1.7.3"
},
"dependencies": {
"es6-collections": "^0.5.5",
"reflect-metadata": "^0.1.2"
}
}