-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.65 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "reserve-cmd",
"version": "1.0.4",
"description": "command handler for REserve",
"main": "./index.js",
"files": [
"*.js"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "standard && nyc mocha",
"lint": "standard --fix",
"mocha": "mocha",
"mocha-dbg": "node --inspect-brk node_modules/mocha/bin/_mocha",
"cover": "nyc mocha && nyc report --reporter=lcov",
"serve": "reserve --config tests/reserve.json --verbose",
"serve-dbg": "node --inspect-brk node_modules/reserve --config tests/reserve.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArnaudBuchholz/reserve-cmd.git"
},
"keywords": [
"reserve",
"command"
],
"author": "Arnaud Buchholz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArnaudBuchholz/reserve-cmd/issues"
},
"homepage": "https://github.com/ArnaudBuchholz/reserve-cmd#readme",
"dependencies": {
"reserve": ">=1.6.1"
},
"devDependencies": {
"colors": "^1.4.0",
"coveralls": "^3.0.9",
"eslint-utils": "^2.0.0",
"lodash": "^4.17.15",
"minimist": ">=1.2.3",
"mocha": "^7.0.0",
"mock-require": "^3.0.3",
"nyc": "^15.0.0",
"standard": "^14.3.1"
},
"standard": {
"globals": [
"XMLHttpRequest",
"window",
"process",
"describe",
"it",
"before",
"after"
]
},
"mocha": {
"spec": [
"tests/mocha/*.test.js"
]
},
"nyc": {
"check-coverage": true,
"exclude": [
"tests/mocha/assert.js",
"tests/cmd.js"
],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
}
}