feathers/package.json
2019-01-08 18:50:58 -08:00

42 lines
983 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": ">= 8"
},
"scripts": {
"install": "lerna bootstrap",
"publish": "lerna publish",
"lint": "semistandard \"packages/**/lib/**/*.js\" \"packages/**/test/**/*.js\" --fix",
"test": "npm run lint && nyc lerna run test --ignore @feathersjs/authentication-client",
"test:client": "grunt"
},
"semistandard": {
"env": [
"mocha"
]
},
"devDependencies": {
"lerna": "^3.4.0",
"nyc": "^13.0.1",
"semistandard": "^13.0.0",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.1",
"grunt-saucelabs": "^9.0.0"
}
}