mirror of
https://github.com/feathersjs/feathers.git
synced 2026-01-25 15:23:13 +00:00
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
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": "github",
|
|
"url": "https://github.com/sponsors/daffl"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/feathersjs/feathers/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10"
|
|
},
|
|
"scripts": {
|
|
"install": "lerna bootstrap -- --legacy-peer-deps",
|
|
"publish": "lerna publish --dist-tag crow && git commit -am \"chore: Update changelog\" && git push origin",
|
|
"lint": "tslint 'packages/**/*.js' 'packages/**/*.ts' -c tslint.json --fix",
|
|
"update-dependencies": "ncu -u && lerna exec -- ncu -u -x socket.io,socket.io-client,grant,grant-profile",
|
|
"clean": "find . -name node_modules -exec rm -rf '{}' + && find . -name package-lock.json -exec rm -rf '{}' +",
|
|
"test": "nyc lerna run test"
|
|
},
|
|
"devDependencies": {
|
|
"lerna": "^4.0.0",
|
|
"nyc": "^15.1.0",
|
|
"tslint": "^6.1.3"
|
|
}
|
|
}
|