forked from feathersjs/feathers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1000 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
42
{
"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": ">= 6"
},
"scripts": {
"install": "lerna bootstrap",
"lint": "semistandard packages/**/*.js --fix",
"test": "npm run lint && nyc lerna run test --ignore generator-**",
"test:client": "grunt",
"test:generators": "lerna run test --scope generator-** --stream --concurrency 1"
},
"semistandard": {
"env": [
"mocha"
]
},
"devDependencies": {
"lerna": "^3.4.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"semistandard": "^12.0.1",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.1",
"grunt-saucelabs": "^9.0.0"
}
}