thinkjs/package.json

104 lines
2.2 KiB
JSON

{
"name": "thinkjs",
"description": "ThinkJS - Use full ES6/7 features to develop web applications, Support TypeScript",
"version": "2.3.3",
"author": {
"name": "welefen",
"email": "welefen@gmail.com"
},
"scripts": {
"test": "npm run eslint && npm run test-cov",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 50000 --recursive -R spec test/",
"compile": "babel src/ --out-dir lib/",
"watch-compile": "npm run compile -- --watch",
"watch": "npm run watch-compile",
"prepublishOnly": "npm run compile",
"eslint": "eslint src/"
},
"bin": {
"thinkjs": "./bin/index.js"
},
"publishConfig": {
"tag": "v2"
},
"contributors": [
{
"name": "welefen",
"email": "welefen@gmail.com"
},
{
"name": "im-kulikov",
"email": "im@kulikov.im"
},
{
"name": "maxzhang",
"email": "zhangdaiping@gmail.com"
},
{
"name": "akira-cn",
"email": "akira.cn@gmail.com"
},
{
"name": "qgy18",
"email": "quguangyu@gmail.com"
}
],
"main": "lib/index.js",
"dependencies": {
"ejs": "2.5.7",
"multiparty": "4.2.2",
"mime": "1.3.4",
"mysql": "2.11.1",
"thinkit": "4.10.0",
"babel-runtime": "6.6.1",
"bluebird": "3.3.5",
"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.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-core": "^6.20.0",
"babel-eslint": "^6.0.4",
"eslint": "2.8.0",
"typescript": "^2.1.6",
"source-map": "0.5.3"
},
"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": ">=0.12.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/thinkjs/thinkjs/issues"
}
}