generator-eggjs
Version:
Boilerplates for Egg.js
38 lines (37 loc) • 872 B
JSON
{
"name": "<%- name %>",
"version": "1.0.0",
"description": "<%- description %>",
"dependencies": {},
"devDependencies": {
"autod": "^3.0.1",
"egg-bin": "^4.3.7",
"egg-ci": "^1.8.0",
"eslint": "^4.18.1",
"eslint-config-egg": "^7.0.0",
"webstorm-disable-index": "^1.2.0"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
"pkgfiles": "egg-bin pkgfiles"
},
"ci": {
"version": "8"
},
"eslintIgnore": ["coverage", "dist"],
"repository": {
"type": "git",
"url": ""
},
"files": ["lib", "index.js"],
"author": "<%- author %>",
"license": "MIT"
}