-
-
Notifications
You must be signed in to change notification settings - Fork 796
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.2 KB
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
{
"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 --target minor && lerna exec -- ncu -u --target minor -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",
"npm-check-updates": "^19.3.2",
"nyc": "^15.1.0",
"tslint": "^6.1.3"
}
}