-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 1.73 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
{
"name": "cloudflare-preview-url",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "GitHub Action to receive the deployment preview from Cloudflare",
"keywords": [
"cloudflare",
"deployment",
"github",
"action"
],
"homepage": "https://github.com/zentered/cloudflare-preview-url#readme",
"bugs": {
"url": "https://github.com/zentered/cloudflare-preview-url/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/cloudflare-preview-url.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/zentered)"
],
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && npm run test && npm run prepare",
"lint": "eslint .",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "node --test",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"*.js": [
"eslint --cache --fix"
]
},
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.5.0",
"@vercel/ncc": "^0.38.1",
"commitlint": "^19.3.0",
"eslint": "^9.5.0",
"esmock": "^2.6.6",
"globals": "^15.6.0",
"husky": "^9.0.11",
"pinst": "^3.0.0",
"prettier": "^3.3.2",
"webpack": "^5.92.1"
},
"engines": {
"node": ">=20"
},
"release": {
"branches": [
"main"
]
}
}