feathers/package.json
2018-08-20 19:58:09 -07:00

41 lines
892 B
JSON

{
"name": "feathers",
"private": true,
"homepage": "http://feathersjs.com",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"author": {
"name": "Feathers contributor",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"install": "lerna bootstrap",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"mocha:watch": "mocha --opts mocha.opts --watch",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"devDependencies": {
"lerna": "^3.1.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"semistandard": "^12.0.1"
}
}