-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.39 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@rockerjs/mvc",
"version": "1.0.12",
"description": "A MVC framework based on Rockerjs/core used by node.js",
"author": {
"name": "yangli",
"email": "yl.yuxiu@foxmail.com",
"url": "https://github.com/royalrover"
},
"scripts": {
"build": "npm run clean && (tsc || true)",
"clean": "rimraf ./dist",
"cover": "npm run build && cd dist && cross-env NODE_STARTER=rockerjs istanbul cover _mocha -x src/errors/**/*.js -- test/test.spec.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": "cd dist && npm run build && cross-env NODE_STARTER=rockerjs deco dist/test/test.spec.js"
},
"dependencies": {
"@rockerjs/common": "^1.0.1",
"@rockerjs/core": "^1.0.2",
"ejs": "^2.6.1",
"ini": "^1.3.5",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"mime": "^2.4.2",
"reflect-metadata": "^0.1.13",
"sb-scandir": "^2.0.0"
},
"devDependencies": {
"@rockerjs/dao": "^1.0.0",
"@rockerjs/rpc-starter": "^1.0.0",
"@rockerjs/midlog-starter": "^1.0.0",
"@rockerjs/tsunit": "^1.0.0",
"@rockerjs/tracer": "1.0.1",
"@types/koa": "^2.0.48",
"@types/node": "^7.10.5",
"coveralls": "^2.13.0",
"cross-env": "^5.2.0",
"istanbul": "^0.4.5",
"md5": "^2.2.1",
"moment": "^2.24.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rimraf": "^2.6.3",
"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": "chemingjun@weidian.com"
},
{
"name": "kangzhe",
"email": "kangzhe@weidian.com"
},
{
"name": "dingjunjie",
"email": "dingjunjie@weidian.com"
}
],
"license": "MIT",
"directories": {
"doc": "doc"
},
"main": "./dist/index.js"
}