-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "cloudflare-router",
"version": "2.2.1",
"description": "An express-like router for Cloudflare Workers - created with TypeScript.",
"main": "dist/index.js",
"repository": "https://github.com/Visualizememe/cloudflare-router",
"author": "Visualizememe",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.0.5",
"joi": "^17.4.0",
"typedoc": "^0.21.2",
"typedoc-plugin-markdown": "^3.10.2",
"typedoc-plugin-markdown-pages": "^0.3.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@cloudflare/workers-types": "^2.2.2",
"tslib": "^2.2.0",
"url-pattern": "^1.0.3"
},
"scripts": {
"test": "jest",
"build": "tsc --skipLibCheck",
"prepublishOnly": "yarn build",
"create-docs": "typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs --namedAnchors --excludeExternals --out docs src && mkdocs build"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}