-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "cloudworker-router",
"version": "4.1.6",
"description": "A router for cloudflare workers",
"files": [
"dist/src/**/*"
],
"main": "dist/src/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src/**",
"test": "yarn run lint && jest",
"prepare": "husky install; yarn build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusahlstrand/cloudworker-router.git"
},
"keywords": [
"cloudflare",
"workers",
"router"
],
"author": "Markus Ahlstrand",
"license": "MIT",
"bugs": {
"url": "https://github.com/markusahlstrand/cloudworker-router/issues"
},
"homepage": "https://github.com/markusahlstrand/cloudworker-router#readme",
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/types": "^17.0.0",
"@jest/types": "^29.3.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-miniflare": "^2.11.0",
"prettier": "^2.8.1",
"semantic-release": "^19.0.5",
"service-worker-mock": "^2.0.5",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"path-to-regexp": "^6.2.1"
}
}