This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "sunder",
"version": "0.10.1",
"license": "MIT",
"author": "Guido Zuidhof <[email protected]>",
"type": "module",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/gzuidhof"
},
"repository": {
"type": "git",
"url": "github.com/sunderjs/sunder"
},
"description": "Minimal, strict, server-side framework for service workers (such as Cloudflare Workers)",
"scripts": {
"build": "rimraf build && tsc",
"tsc": "tsc",
"test": "jest",
"dist": "npm i && npm t && npm run build && cp package.json build/lib/ && cp README.md build/lib/ && cd build/lib && npm publish --ignore-scripts",
"prepublishOnly": "echo \"Error: Don't run 'npm publish' in root. Use 'npm run dist' instead.\" && exit 1"
},
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"devDependencies": {
"@cloudflare/workers-types": "^3.1.1",
"@peculiar/webcrypto": "^1.1.4",
"@types/http-errors": "^1.8.0",
"@types/jest": "^27.0.2",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.7",
"@types/secure-json-parse": "^1.0.2",
"@udacity/types-service-worker-mock": "^1.2.0",
"cloudflare-worker-mock": "^1.2.0",
"fetch-readablestream": "^0.2.0",
"formdata-node": "^2.4.0",
"jest": "^27.2.4",
"node-fetch": "^2.6.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.1.2"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"http-errors": "^2.0.0",
"secure-json-parse": "^2.1.0",
"tiny-request-router": "^1.2.2"
}
}