-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.7 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
{
"name": "@rockerjs/core",
"version": "1.0.3",
"description": "A lightweight ioc container for node.js",
"author": {
"name": "yangli",
"email": "[email protected]",
"url": "https://github.com/royalrover"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"cover": "npm run build && deco dist/test && cd dist && istanbul cover _mocha -x src/errors/**/*.js -- --timeout 10000 --exit --reporter spec --recursive",
"dev": "npm run clean && tsc -w",
"lint": "tslint ./src/**/*.ts ./src/*.ts",
"prepublish": "npm run build",
"start": "tsc -w",
"test": "npm run build && deco dist/test"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@rockerjs/tsunit": "^1.0.0",
"@types/node": "^7.0.60",
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"rimraf": "^2.6.2",
"tslint": "^5.14.0",
"typescript": "^2.7.2"
},
"keywords": [
"ioc",
"di",
"javascript",
"typescript",
"node",
"dependency injection",
"dependency inversion",
"inversion of control container",
"AOP",
"Aspect Oriented Program"
],
"contributors": [
{
"name": "chemingjun",
"email": "[email protected]"
},
{
"name": "kangzhe",
"email": "[email protected]"
},
{
"name": "dingjunjie",
"email": "[email protected]"
}
],
"license": "MIT",
"directories": {
"doc": "doc"
},
"main": "./dist/index.js"
}