feathers/package.json

37 lines
939 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",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/feathers"
},
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"install": "lerna bootstrap",
"publish": "lerna publish && git commit -am \"chore: Update version and changelog\" && git push origin master",
"lint": "tslint 'packages/**/*.js' 'packages/**/*.ts' -c tslint.json --fix",
"test": "npm run lint && nyc lerna run test"
},
"devDependencies": {
"lerna": "^3.20.2",
"nyc": "^15.0.0",
"tslint": "^6.0.0"
}
}