-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "8track",
"version": "1.3.2",
"description": "A service worker router with async middleware and neato type-inference inspired by Koa",
"repository": {
"url": "https://github.com/jrf0110/8track"
},
"bin": {
"8track": "./dist/cli.js"
},
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prepublishOnly": "yarn build && yarn build:shebang && yarn build:executable",
"build": "tsc -d && tsc -d --module ESNext --outDir dist/esm",
"build:watch": "tsc -w -d & tsc -w -d --module ESNext --outDir dist/esm",
"build:shebang": "printf '%s\n%s\n' \"#!/usr/bin/env node\n\" \"$(cat dist/cli.js)\" > dist/cli.js",
"build:executable": "chmod +x dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "ava dist/*_test.js",
"test:watch": "yarn test -w"
},
"author": "John Fawcett",
"license": "ISC",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@types/node-fetch": "^2.5.10",
"@types/yargs": "^15.0.4",
"ava": "^1.4.1",
"node-fetch": "^2.6.1",
"service-worker-mock": "^2.0.5",
"typescript": "^4.3.3"
},
"dependencies": {
"form-data": "^2.5.0",
"isomorphic-fetch": "^2.2.1",
"path-to-regexp": "^3.0.0",
"storage-kv": "^0.0.9",
"yargs": "^15.3.1"
}
}