-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
92 lines (92 loc) · 2.33 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
{
"name": "cloudworker-proxy",
"version": "1.0.0",
"description": "An api gateway for cloudflare workers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/markusahlstrand/cloudworker-proxy.git"
},
"bugs": {
"url": "https://github.com/markusahlstrand/cloudworker-proxy/issues"
},
"homepage": "https://github.com/markusahlstrand/cloudworker-proxy#readme",
"author": "Markus Ahlstrand",
"keywords": [
"cloudflare",
"workers",
"api",
"gateway",
"proxy"
],
"main": "dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build": "esbuild --bundle src/index.ts --format=cjs --outdir=dist --sourcemap --minify",
"lint": "eslint src",
"package": "bun install; npm run build",
"test": "npm run unit && npm run lint",
"test:integration": "node integration/run.js",
"unit": "bun test",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"docs",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"dependencies": {
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"aws4fetch": "1.0.13",
"cloudworker-router": "1.11.2",
"shortid": "2.2.16",
"cookie": "0.4.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"bun": "1.0.3",
"dotenv": "8.2.0",
"esbuild": "^0.19.2",
"eslint": "7.13.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"fetch-mock": "9.11.0",
"husky": "^8.0.3",
"node-fetch": "2.6.1",
"prettier": "2.1.2",
"semantic-release": "^22.0.4",
"typescript": "^5.2.2",
"wrangler": "^3.7.0"
}
}