forked from feathersjs/feathers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 944 Bytes
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": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"install": "lerna bootstrap",
"publish": "lerna publish && git commit -am \"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",
"test:client": "grunt"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-saucelabs": "^9.0.1",
"lerna": "^3.13.1",
"nyc": "^14.0.0",
"tslint": "^5.15.0"
}
}