forked from agenda/agendash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.22 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
{
"name": "agendash",
"version": "0.4.0",
"description": "Agenda Dashboard",
"main": "app.js",
"bin": "bin/agendash-standalone.js",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"test": "run-p lint ava",
"lint": "xo",
"ava": "ava -v -c 1"
},
"keywords": [
"agenda"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agenda/agendash.git"
},
"bugs": {
"url": "https://github.com/agenda/agendash/issues"
},
"homepage": "https://github.com/agenda/agendash#readme",
"license": "MIT",
"dependencies": {
"agenda": "^1.0.3",
"async": "^2.6.0",
"body-parser": "^1.15.0",
"commander": "^2.9.0",
"express": "^4.0.0",
"hapi": "^17.5.1",
"inert": "^5.1.0",
"semver": "^5.3.0"
},
"devDependencies": {
"ava": "^0.25.0",
"npm-run-all": "^4.1.2",
"supertest": "^3.0.0",
"xo": "^0.18.2"
},
"xo": {
"space": 2,
"rules": {
"space-before-function-paren": [
"error",
"never"
],
"max-params": [
"error",
5
],
"max-nested-callbacks": [
"error",
5
]
},
"envs": [
"node"
],
"ignores": [
"public/**/*"
]
}
}