forked from feathersjs/feathers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 939 Bytes
/
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
{
"name": "feathers",
"private": true,
"homepage": "http://feathersjs.com",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers.git"
},
"author": {
"name": "Feathers contributor",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/feathers"
},
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"install": "lerna bootstrap",
"publish": "lerna publish && git commit -am \"chore: Update version and changelog\" && git push origin master",
"lint": "tslint 'packages/**/*.js' 'packages/**/*.ts' -c tslint.json --fix",
"test": "npm run lint && nyc lerna run test"
},
"devDependencies": {
"lerna": "^3.20.2",
"nyc": "^15.0.0",
"tslint": "^6.0.0"
}
}