forked from danielpigott/cloudflare-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "cloudflare-cli",
"version": "4.2.0",
"description": "A command line interface for interacting with cloudflare",
"homepage": "https://github.com/danielpigott/cloudflare-cli",
"bugs": {
"url": "https://github.com/danielpigott/cloudflare-cli/issues"
},
"keywords": [
"cloudflare",
"cfcli"
],
"license": "MIT",
"author": {
"name": "Daniel Pigott",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/danielpigott/cloudflare-cli.git"
},
"files": [
"index.js",
"lib",
"bin",
"doc"
],
"main": "index.js",
"bin": {
"cfcli": "./bin/cfcli"
},
"scripts": {
"test": "mocha",
"test-ci": "MOCHA_FILE=$JUNIT_REPORT_PATH/mocha.xml mocha --reporter mocha-junit-reporter"
},
"preferGlobal": true,
"dependencies": {
"axios": "^0.21.1",
"cli-table": "~0.3.1",
"js-yaml": "~3.13.1",
"lodash": "~4.17.15",
"minimist": "~1.2.0"
},
"devDependencies": {
"mocha": "^5.1.1",
"mocha-junit-reporter": "^1.17.0",
"uuid": "^3.2.1"
},
"engines": {
"node": ">=4.0.0"
}
}