forked from feathersjs/feathers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"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"
}
}