-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.69 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
95
96
97
98
99
100
101
102
103
104
{
"name": "cfctl",
"version": "1.0.0",
"description": "OAuth-first Cloudflare administration CLI with GitHub CLI-style commands, profiles, safe writes, and direct API access.",
"type": "module",
"scripts": {
"test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent --coverage",
"lint": "npx oxlint .",
"test:gaps": "node scripts/test-gaps.mjs",
"test:live": "npm run test:live:dry",
"test:live:dry": "node scripts/test-live.mjs --dry",
"test:live:wet": "node scripts/test-live.mjs --wet",
"test:e2e:screenshots": "node tests/e2e/oauth-picker.e2e.mjs",
"test:e2e:lighthouse": "node tests/e2e/oauth-picker.lighthouse.mjs",
"test:e2e:web": "npm run test:e2e:screenshots && npm run test:e2e:lighthouse",
"pack": "npm pack --dry-run"
},
"keywords": [
"cloudflare",
"cli",
"cloudflare-api",
"cloudflare-cli",
"cloudflare-management",
"oauth",
"api-client",
"api-token",
"profiles",
"dns",
"zones",
"workers",
"r2",
"pages",
"d1",
"queues",
"stream",
"waf",
"rulesets",
"zero-trust",
"security",
"account-management",
"infrastructure",
"automation",
"javascript",
"nodejs",
"esm",
"devops"
],
"author": "Eli Sterling <eli@eliware.org>",
"license": "ISC",
"dependencies": {
"cloudflare": "^7.0.0"
},
"bin": {
"cfctl": "bin/cfctl.mjs"
},
"devDependencies": {
"chrome-launcher": "^1.2.1",
"jest": "^30.0.4",
"lighthouse": "^13.4.1",
"oxlint": "^1.78.0",
"puppeteer": "^25.6.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).mjs"
],
"coveragePathIgnorePatterns": [
"/bin/",
"/tests/live/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/live/"
]
},
"allowScripts": {
"unrs-resolver@1.12.2": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliware/cfctl.git"
},
"homepage": "https://eliware.org/cf",
"bugs": {
"url": "https://github.com/eliware/cfctl/issues"
},
"engines": {
"node": ">=26"
},
"files": [
"bin",
"src",
"README.md",
"RELEASE_NOTES.md",
"LICENSE",
"docs",
"completions",
"examples"
],
"optionalDependencies": {
"keytar": "^7.9.0"
}
}