-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "miles-cli",
"version": "0.1.2",
"description": "Command line utility to interact with Miles URL Monitor",
"main": "index.js",
"bin": {
"miles": "bin/miles.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-cli.git"
},
"engines": {
"node": ">=10.13.0"
},
"keywords": [
"miles"
],
"contributors": [
{
"name": "LibreWorks Contributors",
"homepage": "https://github.com/libreworks/miles-cli/contributors"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/libreworks/miles-cli/issues"
},
"homepage": "https://github.com/libreworks/miles-cli",
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^2.13.1",
"mocha": "^3.2.0",
"nyc": "^13.3.0",
"prettier": "2.2.1",
"sinon": "^10.0.0",
"tmp-promise": "^3.0.2"
},
"dependencies": {
"@folder/xdg": "^3.1.2",
"commander": "^7.2.0",
"cross-spawn": "^7.0.3",
"event-target-shim": "^6.0.2",
"fs.promises": "^0.1.2",
"global-modules": "^2.0.0",
"mkdirp": "^1.0.4",
"ora": "^4.1.1",
"promptly": "^3.2.0",
"winston": "^3.3.3",
"yaml": "^1.10.2"
}
}