This repository was archived by the owner on Feb 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.47 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.47 KB
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
{
"name": "agendash2",
"version": "0.8.2",
"description": "A modern dashboard for Agenda.js with Pagination and Search capabilities",
"main": "app.js",
"bin": "bin/agendash-standalone.js",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags",
"test": "run-p lint ava",
"lint": "xo",
"ava": "ava -v -c 1"
},
"keywords": [
"agenda",
"agendash",
"dashboard",
"job-queues"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agenda/agendash-v2.git"
},
"bugs": {
"url": "https://github.com/agenda/agendash-v2/issues"
},
"homepage": "https://github.com/agenda/agendash-v2#readme",
"license": "MIT",
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"agenda": "^3.1.0",
"async": "^2.6.0",
"body-parser": "^1.15.0",
"commander": "^2.9.0",
"express": "^4.0.0",
"semver": "^5.3.0"
},
"devDependencies": {
"ava": "^3.5.1",
"nodemon": "^2.0.3",
"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/**/*"
]
}
}