forked from BetaHuhn/cf-worker-redirect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "cf-worker-redirect",
"version": "1.2.24",
"description": "Simple URL shortener running at the edge with Cloudflare Workers and Worker KV.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src/ --ext .ts",
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive transpiled/test",
"transpile": "tsc --project ./test",
"dev": "wrangler dev",
"build": "webpack",
"deploy": "worker-setup deploy",
"generate": "worker-setup generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betahuhn/cf-worker-redirect.git"
},
"keywords": [
"template",
"workers",
"cloudflare-workers",
"typescript",
"nodejs"
],
"author": "Maximilian Schiller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betahuhn/cf-worker-redirect/issues"
},
"homepage": "https://github.com/betahuhn/cf-worker-redirect#readme",
"devDependencies": {
"@betahuhn/config": "^1.2.0",
"@cloudflare/workers-types": "^2.2.2",
"@types/chai": "^4.2.22",
"@types/mocha": "^8.2.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"ts-loader": "^8.3.0",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"worker-setup": "^1.5.0"
}
}