-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "miles-plugin-ops",
"version": "0.1.0",
"description": "An operations plugin for administrators of the Miles URL Monitor",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha --async-only --recursive --timeout 5000 test test",
"prettier": "prettier --write .",
"prettier-ci": "prettier --list-different .",
"cover": "nyc --reporter=lcov --reporter=text-summary npm test",
"coveralls": "nyc --reporter=text-lcov npm test | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/libreworks/miles-plugin-ops.git"
},
"engines": {
"node": ">=10.13.0"
},
"keywords": [
"miles",
"miles-plugin"
],
"contributors": [
{
"name": "LibreWorks Contributors",
"homepage": "https://github.com/libreworks/miles-plugin-ops/contributors"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/libreworks/miles-plugin-ops/issues"
},
"homepage": "https://github.com/libreworks/miles-plugin-ops",
"devDependencies": {
"commander": "^7.2.0",
"coveralls": "^3.0.3",
"eslint": "^2.13.1",
"mocha": "^3.2.0",
"nyc": "^13.3.0",
"prettier": "2.2.1",
"sinon": "^10.0.0"
},
"dependencies": {
"promptly": "^3.2.0"
}
}