mirror of
https://github.com/feathersjs/feathers.git
synced 2026-01-25 15:23:13 +00:00
48 lines
1.7 KiB
JSON
48 lines
1.7 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 && git commit -am \"chore: Update changelog\" && git push origin",
|
|
"publish:premajor": "lerna publish premajor --preid pre --pre-dist-tag pre && git commit -am \"chore: Update version and changelog\" && git push origin",
|
|
"publish:prerelease": "lerna publish prerelease --preid pre --pre-dist-tag pre --dist-tag pre && git commit -am \"chore: Update version and changelog\" && git push origin",
|
|
"lint": "eslint packages/**/src/**/*.ts packages/**/test/**/*.ts --fix",
|
|
"update-dependencies": "ncu -u && lerna exec -- ncu -u -x node-fetch",
|
|
"clean": "find . -name node_modules -exec rm -rf '{}' + && find . -name package-lock.json -exec rm -rf '{}' +",
|
|
"test:deno": "deno test --config deno/tsconfig.json deno/test.ts",
|
|
"test": "npm run lint && nyc lerna run test"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.3.0",
|
|
"@typescript-eslint/parser": "^5.3.0",
|
|
"eslint": "^8.2.0",
|
|
"eslint-plugin-import": "^2.25.2",
|
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
"lerna": "^4.0.0",
|
|
"npm-check-updates": "^12.0.0",
|
|
"nyc": "^15.1.0",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|