mirror of
https://github.com/feathersjs/feathers.git
synced 2026-01-25 15:23:13 +00:00
48 lines
1.4 KiB
JSON
48 lines
1.4 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": ">= 12"
|
|
},
|
|
"scripts": {
|
|
"install": "lerna bootstrap",
|
|
"publish": "lerna publish",
|
|
"publish:premajor": "lerna publish premajor --preid pre --pre-dist-tag pre",
|
|
"publish:prerelease": "lerna publish prerelease --preid pre --pre-dist-tag pre --dist-tag pre",
|
|
"lint": "eslint packages/**/src/**/*.ts packages/**/test/**/*.ts --fix",
|
|
"update-dependencies": "ncu -u && lerna exec -- ncu -u",
|
|
"clean": "find . -name node_modules -exec rm -rf '{}' + && find . -name package-lock.json -exec rm -rf '{}' +",
|
|
"test": "npm run lint && nyc lerna run test"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.20.0",
|
|
"@typescript-eslint/parser": "^4.20.0",
|
|
"eslint": "^7.23.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jsdoc": "^32.3.0",
|
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
"lerna": "^4.0.0",
|
|
"npm-check-updates": "^11.3.0",
|
|
"nyc": "^15.1.0",
|
|
"typescript": "^4.2.3"
|
|
}
|
|
}
|