-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "stdi",
"version": "0.0.3",
"description": "Typed dependency injection",
"author": "next0",
"license": "MIT",
"main": "build/es2015/index.js",
"types": "build/es2015/index.d.ts",
"scripts": {
"build": "tsc -p .",
"example:car": "ts-node ./examples/car/index.ts",
"test": "mocha --compilers ts:ts-node/register",
"tslint": "tslint -c tslint.json -s node_modules/tslint-stylish -t stylish '{lib,examples,test}/**/*.ts'",
"prepublish": "npm run build"
},
"tags": [
"di",
"tdi",
"dependency",
"injection",
"container",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/next0/tdi.git"
},
"bugs": {
"url": "https://github.com/next0/tdi/issues"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.21",
"chai": "^3.5.0",
"mocha": "^3.4.1",
"reflect-metadata": "^0.1.9",
"ts-node": "^3.0.4",
"tslint": "^5.2.0",
"tslint-stylish": "^2.1.0",
"typescript": "^2.3.2"
}
}