mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "thinkjs",
|
|
"description": "A Node.js MVC & Restful Framework Support Promise & Generator Function",
|
|
"version": "2.0.0",
|
|
"author": {
|
|
"name": "welefen",
|
|
"email": "welefen@gmail.com"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha --reporter spec --timeout 5000 --recursive test/",
|
|
"test-cov": "istanbul cover --report html ./node_modules/mocha/bin/_mocha -- -t 5000 --recursive -R spec test/",
|
|
"compile": "babel --loose all --optional runtime --stage 0 --modules common src/ --out-dir lib/",
|
|
"watch-compile": "npm run compile -- --watch",
|
|
"prepublish": "npm run compile"
|
|
},
|
|
"bin": {
|
|
"thinkjs": "./bin/index.js"
|
|
},
|
|
"contributors": [{
|
|
"name": "welefen",
|
|
"email": "welefen@gmail.com"
|
|
}],
|
|
"main": "lib/index.js",
|
|
"dependencies": {
|
|
"swig": "1.4.2",
|
|
"multiparty": "4.0.0",
|
|
"mime": "1.3.4",
|
|
"mysql": "2.5.3",
|
|
"websocket-driver": "0.4.0",
|
|
"thinkit": "2.x.x",
|
|
"babel-runtime": "5.6.17",
|
|
"co": "4.6.0",
|
|
"colors": "1.1.0",
|
|
"validator": "4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "1.20.1",
|
|
"muk": "0.3.1",
|
|
"istanbul": "*",
|
|
"babel": "*",
|
|
"commander": ""
|
|
},
|
|
"keywords": [
|
|
"thinkjs",
|
|
"framework",
|
|
"web",
|
|
"rest",
|
|
"restful",
|
|
"router",
|
|
"app",
|
|
"api",
|
|
"es6",
|
|
"websocket",
|
|
"generator-function"
|
|
],
|
|
"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"
|
|
}
|
|
}
|