-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.96 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
{
"name": "workerbee",
"version": "0.16.6",
"description": "Utilities for writing Cloudflare Workers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc",
"dev": "npm run --silent build",
"prepare": "npm run --silent build",
"prettier": "prettier --write \"./src/**/*.{mjs,js,jsx,ts,tsx}\"",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"jest": {
"setupFiles": [
"./src/jestSetup.ts"
]
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"overrides": [
{
"files": "*.json",
"options": {
"useTabs": false,
"singleQuote": false
}
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/markjaquith/workerbee.git"
},
"keywords": [
"cloudflare",
"workers"
],
"sideEffects": false,
"author": "Mark Jaquith",
"license": "MIT",
"bugs": {
"url": "https://github.com/markjaquith/workerbee/issues"
},
"homepage": "https://github.com/markjaquith/workerbee#readme",
"dependencies": {
"@cloudflare/workers-types": "^2.1.0",
"@types/cookie": "^0.4.0",
"@types/ramda": "^0.27.39",
"cookie": "^0.4.1",
"path-to-regexp": "^6.2.0",
"ramda": "^0.27.1"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"cheerio": "^1.0.0-rc.5",
"husky": "^5.1.1",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^2.6.1",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"source-map-loader": "^2.0.1",
"ts-loader": "^8.0.17",
"typescript": "^4.8.3"
}
}