-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3 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
{
"name": "delete-deployment-environment",
"version": "3.1.0",
"description": "Remove github repo environments and their deployments",
"author": "Aetherinox",
"license": "MIT",
"main": "lib/main.js",
"build": {
"appId": "com.gh-action-delete-deploy-env.id"
},
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/aetherinox"
}
],
"bugs": {
"url": "https://github.com/Aetherinox/gh-action-delete-deploy-env/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Aetherinox/gh-action-delete-deploy-env.git"
},
"contributors": [
{
"name": "Aetherinox",
"email": "118329232+Aetherinox@users.noreply.github.com",
"url": "https://github.com/Aetherinox"
},
{
"name": "EuropaServ",
"email": "161414668+EuropaServ@users.noreply.github.com",
"url": "https://github.com/EuropaServ"
}
],
"scripts": {
"build": "tsc",
"test": "ava --verbose",
"lint": "eslint",
"lint:fix": "eslint --fix src/**/*.ts",
"pack": "ncc build",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"root": "node root.mjs",
"root:generate": "node root.mjs generate",
"root:root": "npx --quiet env-cmd --no-override node root.mjs",
"root:uuid": "npx --quiet env-cmd --no-override node root.mjs uuid",
"root:guid": "npx --quiet env-cmd --no-override node root.mjs guid",
"root:version": "node -p require('./package.json').version;"
},
"keywords": [
"cloudflare",
"cloudflare-worker",
"node",
"nodejs",
"environment",
"deployments"
],
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1"
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"uuid": "^11.1.0",
"@aetherinox/noxenv": "^1.1.1",
"@octokit/core": "^5.2.1",
"@octokit/request-error": "^7.0.0",
"@octokit/types": "^10.0.0",
"@types/node": "^20.11.10",
"typescript-eslint": "^8.35.0",
"@typescript-eslint/parser": "^8.34.1",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"eslint": "^9.29.0",
"eslint-config-love": "^121.0.0",
"eslint-plugin-escompat": "^3.11.4",
"eslint-plugin-github": "^6.0.0",
"@stylistic/eslint-plugin": "^4.4.1",
"@vercel/ncc": "^0.38.3",
"ava": "^6.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"yaml-lint": "^1.7.0",
"all-contributors-cli": "^6.26.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}