forked from thinkjs/thinkjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.91 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": "thinkjs",
"description": "ThinkJS - Use full ES6/7 features to develop web applications, Support TypeScript",
"version": "2.1.7",
"author": {
"name": "welefen",
"email": "[email protected]"
},
"scripts": {
"test": "npm run eslint && npm run test-cov",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 20000 --recursive -R spec test/",
"compile": "babel --presets es2015-loose,stage-1 --plugins transform-runtime src/ --out-dir lib/",
"watch-compile": "npm run compile -- --watch",
"watch": "npm run watch-compile",
"prepublish": "npm run compile",
"eslint": "eslint src/"
},
"bin": {
"thinkjs": "./bin/index.js"
},
"contributors": [{
"name": "welefen",
"email": "[email protected]"
}],
"main": "lib/index.js",
"dependencies": {
"ejs": "2.3.4",
"multiparty": "4.1.2",
"mime": "1.3.4",
"mysql": "2.9.0",
"thinkit": "4.7.0",
"babel-runtime": "6.3.19",
"bluebird": "3.1.1",
"co": "4.6.0",
"colors": "1.1.2",
"validator": "4.2.0",
"commander": "2.9.0"
},
"devDependencies": {
"mocha": "1.20.1",
"muk": "0.3.1",
"istanbul": "0.4.0",
"babel-cli": "6.3.17",
"babel-preset-es2015-loose": "6.1.4",
"babel-preset-stage-1": "6.3.13",
"babel-plugin-transform-runtime": "6.3.13",
"eslint": "^1.10.3",
"babel-eslint": "4.1.8",
"typescript": "next",
"babel-core": "6.x.x"
},
"keywords": [
"thinkjs",
"framework",
"web",
"rest",
"restful",
"router",
"api",
"es6",
"es7",
"async",
"await",
"yield",
"websocket",
"generator-function",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/welefen/thinkjs"
},
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/welefen/thinkjs/issues"
}
}