This repository was archived by the owner on Jun 12, 2020. It is now read-only.
forked from agenda/agendash
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 1.99 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"_from": "agendash",
"_id": "agendash@1.0.0",
"_inBundle": false,
"_integrity": "sha512-m8Zp0uJEwkgMkgRs9HqWVP4YKyal2Z4x/c2pGCrxPqwV3GOiG9DucHi9BqWbb8Z1Sely6LryVolTlgQRhLw1Iw==",
"_location": "/agendash",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "agendash",
"name": "agendash",
"escapedName": "agendash",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/agendash/-/agendash-1.0.0.tgz",
"_shasum": "78e9fc2954ce11238f69459ecad51b4222afdf1a",
"_spec": "agendash",
"_where": "/Users/alexanderbabel/UniNowProjects/warehouse-worker",
"bin": {
"agendash": "bin/agendash-standalone.js"
},
"bugs": {
"url": "https://github.com/agenda/agendash/issues"
},
"bundleDependencies": false,
"dependencies": {
"agenda": "^2.0.0",
"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"
},
"deprecated": false,
"description": "Agenda Dashboard",
"devDependencies": {
"ava": "^0.25.0",
"npm-run-all": "^4.1.2",
"supertest": "^3.0.0",
"xo": "^0.18.2"
},
"engines": {
"node": ">=8.9.0"
},
"homepage": "https://github.com/agenda/agendash#readme",
"keywords": [
"agenda"
],
"license": "MIT",
"main": "app.js",
"name": "agendash",
"repository": {
"type": "git",
"url": "git+https://github.com/agenda/agendash.git"
},
"scripts": {
"ava": "ava -v -c 1",
"lint": "xo",
"test": "run-p lint ava"
},
"version": "1.0.0",
"xo": {
"space": 2,
"rules": {
"space-before-function-paren": [
"error",
"never"
],
"max-params": [
"error",
5
],
"max-nested-callbacks": [
"error",
5
]
},
"envs": [
"node"
],
"ignores": [
"public/**/*"
]
}
}