forked from thinkjs/thinkjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.21 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "thinkjs",
"description": "ThinkJS - Use full ES6/7 features to develop web applications",
"version": "3.2.5",
"author": {
"name": "welefen",
"email": "[email protected]"
},
"pre-commit": [
"test"
],
"scripts": {
"test": "npm run lint && npm run test-cov",
"test-cov": "nyc ava test/case/ && nyc report --reporter=html",
"lint": "eslint ./lib/ index.js",
"prepublish": "npm test"
},
"contributors": [
{
"name": "welefen",
"email": "[email protected]"
},
{
"name": "im-kulikov",
"email": "[email protected]"
},
{
"name": "maxzhang",
"email": "[email protected]"
},
{
"name": "akira-cn",
"email": "[email protected]"
},
{
"name": "qgy18",
"email": "[email protected]"
}
],
"main": "lib/application.js",
"type": "index.d.ts",
"dependencies": {
"bluebird": "3.3.5",
"cookies": "^0.7.0",
"debug": "^3.1.0",
"destroy": "^1.0.4",
"koa": "^2.2.0",
"on-finished": "^2.3.0",
"think-cluster": "^1.0.0",
"think-config": "^1.0.0",
"think-controller": "^1.0.1",
"think-crontab": "^1.0.0",
"think-helper": "^1.0.0",
"think-loader": "^1.0.0",
"think-logger3": "^1.0.0",
"think-logic": "^1.0.0",
"think-meta": "^1.0.1",
"think-mock-http": "^1.0.0",
"think-payload": "^1.0.0",
"think-pm2": "^1.0.0",
"think-resource": "^1.0.0",
"think-router": "^1.0.0",
"think-trace": "^1.0.2",
"think-validator": "^1.0.2"
},
"devDependencies": {
"ava": "^0.18.0",
"eslint": "^4.2.0",
"eslint-config-think": "^1.0.2",
"mkdirp": "^0.5.1",
"mock-require": "^2.0.1",
"nyc": "^7.0.0",
"pre-commit": "^1.2.2"
},
"keywords": [
"thinkjs",
"framework",
"web",
"rest",
"restful",
"router",
"api",
"es6",
"es7",
"async",
"await",
"yield",
"websocket",
"generator-function",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/thinkjs/thinkjs"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/thinkjs/thinkjs/issues"
}
}