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
41 lines (41 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 931 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
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": "hello@feathersjs.com",
"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",
"mocha": "mocha --opts mocha.opts",
"mocha:watch": "mocha --opts mocha.opts --watch",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"devDependencies": {
"chai": "^4.1.2",
"lerna": "^3.1.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"semistandard": "^12.0.1"
}
}