-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 3.52 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "iroots",
"description": "A CLI to manage Roots projects",
"type": "module",
"version": "0.0.0",
"contributors": [
{
"author": "Tang Rufus @TangRufus"
},
{
"name": "Lee Hanbury-Pickett",
"email": "lee.hanbury@gmail.com",
"url": "https://github.com/codepuncher"
}
],
"bin": {
"iroots": "./bin/run.js"
},
"bugs": "https://github.com/itinerisltd/iroots/issues",
"dependencies": {
"@oclif/core": "^3.26.9",
"@oclif/plugin-help": "^6",
"execa": "^9.5.1",
"globby": "^14.0.2",
"replace-in-file": "^8.2.0"
},
"devDependencies": {
"@oclif/test": "^4.1.2",
"@oclif/tslint": "^3",
"@types/fs-extra": "^11.0.4",
"@types/globby": "^9.1.0",
"@types/node": "^22.9.4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^2.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"oclif": "^4.15.29",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"ts-node": "^10",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"engines": {
"node": "^20"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/itinerisltd/iroots",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "dist/index.js",
"oclif": {
"bin": "iroots",
"dirname": "iroots",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-h"
],
"topics": {
"cloudflare": {
"description": "Manage Cloudflare services"
},
"cloudflare:turnstile": {
"description": "Manage Cloudflare Turnstile instances"
},
"kinsta": {
"description": "Manage Kinsta services"
},
"kinsta:sites": {
"description": "Manage Kinsta WordPress sites"
},
"kinsta:sites:tools": {
"description": "Tools for Kinsta sites"
},
"packagist": {
"description": "Manage Private Packagist services"
},
"packagist:tokens": {
"description": "Manage Private Packagist tokens"
},
"sendgrid": {
"description": "Manage SendGrid services"
},
"sendgrid:api-keys": {
"description": "Manage SendGrid API keys"
},
"sendgrid:access": {
"description": "Manage IP allowlist"
},
"stackpath": {
"description": "Manage StackPath services"
},
"stackpath:sites": {
"description": "Manage StackPath sites"
},
"statuscake": {
"description": "Manage StatusCake services"
},
"statuscake:uptime": {
"description": "Manage StatusCake uptime monitors"
},
"sentry": {
"description": "Manage Sentry services"
},
"sentry:projects": {
"description": "Manage Sentry projects"
},
"sentry:projects:keys": {
"description": "Manage Sentry project keys"
}
}
},
"repository": "itinerisltd/iroots",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "echo NO TESTS",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts",
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}