mirror of
https://github.com/feathersjs/feathers.git
synced 2026-01-25 15:23:13 +00:00
41 lines
892 B
JSON
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"
|
|
}
|
|
}
|