thinkjs/template/plugin/package.json
2016-12-14 14:26:15 +08:00

47 lines
1.1 KiB
JSON

{
"name": "<PLUGIN_NAME>",
"description": "",
"version": "1.0.0",
"author": {},
"scripts": {
"test": "mocha --reporter spec --timeout 5000 --recursive test/",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 5000 --recursive -R spec test/",
"compile": "babel src/ --out-dir lib/",
"watch-compile": "npm run compile -- --watch",
"prepublish": "npm run compile",
"eslint": "eslint src/"
},
"contributors": [],
"main": "lib/index.js",
"dependencies": {
"babel-runtime": "6.x.x"
},
"devDependencies": {
"mocha": "1.20.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",
"thinkjs": "2.x.x",
"eslint": "1.8.0",
"babel-eslint": "4.1.3"
},
"keywords": [
"thinkjs"
],
"repository": {
"type": "git",
"url": "<Github URL>"
},
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "<Github URL>/issues"
}
}