This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "web-decorators",
"version": "0.1.0-latest",
"description": "lightweight annotation-based dependency injection container for typescript",
"engines": {
"node": "~5.5.0",
"npm": "~3.5.3"
},
"dependencies": {
"@types/chai": "3.4.32",
"@types/express": "4.0.30",
"@types/node": "~4.0.30"
},
"peerDependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"restify": "^4.1.1"
},
"devDependencies": {
"@types/mocha": "2.2.28",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"chai-things": "0.2.0",
"mocha": "2.5.3",
"request": "2.74.0",
"request-promise": "4.1.1",
"ts-node": "1.2.2",
"typescript": "rc",
"body-parser": "1.15.2",
"express": "4.14.0",
"restify": "4.1.1"
},
"scripts": {
"test": "npm run test-express; npm run test-restify",
"test-express" : "env SERVER=express mocha --harmony --require ts-node/register ./test/*.ts ./test/express/*.ts",
"test-restify" : "env SERVER=restify mocha --harmony --require ts-node/register ./test/*.ts ./test/restify/*.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/mserranom/container-ts.git"
},
"keywords": [
"typescript",
"ioc",
"di",
"annotations",
"decorators"
],
"author": {
"name": "Miguel Serrano",
"email": "[email protected]",
"url": "http://github.com/mserranom"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mserranom/container-ts/issues"
}
}