mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
29 lines
897 B
JSON
29 lines
897 B
JSON
{
|
|
"name": "thinkjs-application",
|
|
"description": "application created by thinkjs",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"start": "node www/development.js",
|
|
"compile": "babel src/ --out-dir app/",
|
|
"watch-compile": "node -e \"console.log('<npm run watch-compile> no longer need, use <npm start> command direct.');console.log();\"",
|
|
"watch": "npm run watch-compile",
|
|
"test": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 10000 --recursive -R spec test/"
|
|
},
|
|
"dependencies": {
|
|
"thinkjs": "v2",
|
|
"babel-runtime": "6.x.x",
|
|
"source-map-support": "0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"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",
|
|
"mocha": "1.20.1",
|
|
"istanbul": "0.4.0"
|
|
},
|
|
"repository": "",
|
|
"license": "MIT"
|
|
}
|