-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.56 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
{
"name": "cloudflare-cli",
"version": "6.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"
],
"type": "module",
"license": "MIT",
"author": {
"name": "Daniel Pigott",
"email": "pigottd@gmail.com"
},
"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": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --reporters=default",
"test:unit": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --reporters=default --testPathPattern=\\.unit\\.test\\.js$",
"test:integration": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --reporters=default --testPathPattern=integration\\.test\\.js$",
"test:coverage": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --coverage --reporters=default",
"test-ci": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --reporters=jest-junit"
},
"preferGlobal": true,
"dependencies": {
"axios": "^1.11.0",
"cli-table": "~0.3.1",
"expect": "^30.1.2",
"jest-junit": "^17.0.0",
"js-yaml": "~4.2.0",
"lodash": "~4.18.1"
},
"devDependencies": {
"jest": "^29.6.1",
"uuid": "^14.0.0"
},
"engines": {
"node": ">=18.18.0"
},
"packageManager": "pnpm@9.0.0"
}