-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.17 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": "rocker",
"version": "1.0.9",
"description": "A lightweight IOC framework for Javascript/Typescript.",
"author": "CheMingjun",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf *.js ./src/**/*.js ./src/**/*.d.ts ./test/**/*.js",
"test": "npm run clean && nyc mocha",
"coverage": "npm run clean && nyc mocha && open coverage/index.html",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"prepublish": "npm run build",
"start": "tsc -w"
},
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "2.2.48",
"@types/node": "^7.0.60",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"rewire": "^3.0.2",
"rimraf": "^2.6.2",
"typescript": "^2.7.2"
},
"keywords": [
"ioc",
"di",
"javascript",
"typescript",
"node",
"dependency injection",
"dependency inversion",
"inversion of control container"
],
"license": "MIT",
"directories": {
"doc": "doc"
},
"main": "./index.js"
}