-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "ts-dependency-injection",
"version": "1.2.2",
"author": "Tom Guillermin <tom@tomsdev.com>",
"description": "This TypeScript library allows you to easily declare and resolve dependencies, injecting them inyour classes attributes, using eye-candy TypeScript annotations.",
"main": "build/index.js",
"typings": "build/index.d.ts",
"dependencies": {
"log4js": "^0.6.26",
"reflect-metadata": "^0.1.0"
},
"devDependencies": {
"chai": "^3.0.0",
"mocha": "^2.2.5",
"sinon": "^1.15.4",
"typescript": "^1.7.5",
"typings": "^0.6.8"
},
"scripts": {
"test": "mocha build/test",
"make-dev": "typings install; tsc;",
"prepublish": "typings install; tsc;"
},
"engines": {
"node": ">= 0.10.0"
},
"repository": {
"type": "git",
"url": "https://www.github.com/toms-dev/TypeScriptDependencyInjection.git"
},
"keywords": [
"dependency",
"injection",
"typescript",
"annotation",
"decorator",
"framework"
],
"files": [
"README.md",
"build/"
]
}