-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 926 Bytes
/
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
{
"author": "cakedan",
"bugs": {
"url": "https://github.com/cakedan/cf-worker-router/issues"
},
"description": "Easier CloudFlare Worker Request Routing",
"files": [
"lib/**/*"
],
"homepage": "https://github.com/cakedan/cf-worker-router#readme",
"keywords": [
"cloudflare",
"router",
"typescript",
"worker"
],
"license": "MIT",
"main": "lib/index.js",
"name": "cf-worker-router",
"repository": {
"type": "git",
"url": "git+https://github.com/cakedan/cf-worker-router"
},
"types": "lib/index.d.ts",
"version": "0.1.1",
"dependencies": {},
"devDependencies": {
"typescript": "^3.6.3",
"types-cloudflare-worker": "^1.0.1",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"scripts": {
"build": "tsc && webpack --progress --hide-modules -p",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
}
}