forked from feathersjs/feathers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 940 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
37
38
39
40
41
{
"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",
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"install": "lerna bootstrap",
"publish": "lerna publish",
"lint": "semistandard \"packages/**/lib/**/*.js\" \"packages/**/test/**/*.js\" --fix",
"test": "npm run lint && nyc lerna run test",
"test:client": "grunt"
},
"semistandard": {
"env": [
"mocha"
]
},
"devDependencies": {
"lerna": "^3.4.0",
"nyc": "^13.0.1",
"semistandard": "^13.0.0",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.1",
"grunt-saucelabs": "^9.0.0"
}
}