-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.77 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
{
"name": "@zentered.co/cloudflare-kv-action",
"version": "1.0.0",
"private": true,
"description": "GitHub Action set and get Cloudflare KV values",
"keywords": [
"cloudflare",
"kv",
"github",
"action"
],
"homepage": "https://github.com/zentered/cloudflare-kv-action#readme",
"bugs": {
"url": "https://github.com/zentered/cloudflare-kv-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/cloudflare-kv-action.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/zentered)"
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && npm run test && npm run prepare",
"postinstall": "husky install",
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "tap --node-arg=--require=dotenv/config"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"*.js": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@actions/core": "^1.10.0",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.0",
"@vercel/ncc": "^0.36.0",
"commitlint": "^17.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"pinst": "^3.0.0",
"prettier": "^2.8.2",
"tap": "^16.3.3"
},
"engines": {
"node": ">=16"
}
}