forked from cloudflare/miniflare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.9 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "miniflare",
"version": "1.4.1",
"description": "Fun, full-featured, fully-local simulator for Cloudflare Workers",
"keywords": [
"cloudflare",
"workers",
"worker",
"local",
"cloudworker"
],
"author": "MrBBot",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json -w",
"test": "npm run build:fixtures && ava",
"build:fixtures": "node test/fixtures/build.js",
"lint": "eslint '{src,test}/**/*.ts'",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"docs:changelog": "node docs/.vitepress/changelog.js",
"docs:dev": "npm run docs:changelog && vitepress dev docs",
"docs:build": "npm run docs:changelog && vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"bin": {
"miniflare": "dist/bootstrap.js"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@mrbbot/node-fetch": "^4.6.0",
"@peculiar/webcrypto": "^1.1.4",
"chokidar": "^3.5.1",
"cjstoesm": "^1.1.4",
"dotenv": "^8.2.0",
"env-paths": "^2.2.1",
"event-target-shim": "^6.0.2",
"formdata-node": "^2.5.0",
"html-rewriter-wasm": "^0.3.2",
"http-cache-semantics": "^4.1.0",
"ioredis": "^4.27.6",
"kleur": "^4.1.4",
"node-cron": "^2.0.3",
"picomatch": "^2.3.0",
"sanitize-filename": "^1.6.3",
"selfsigned": "^1.10.11",
"semiver": "^1.1.0",
"source-map-support": "^0.5.19",
"tslib": "^2.3.0",
"typescript": "^4.3.4",
"typeson": "^6.1.0",
"typeson-registry": "^1.0.0-alpha.39",
"web-streams-polyfill": "^3.1.0",
"ws": "^7.5.0",
"yargs": "^16.2.0",
"youch": "^2.2.2"
},
"devDependencies": {
"@cloudflare/kv-asset-handler": "^0.1.3",
"@types/http-cache-semantics": "^4.0.0",
"@types/ioredis": "^4.26.5",
"@types/node": "^14.14.20",
"@types/node-cron": "^2.0.3",
"@types/node-forge": "^0.10.2",
"@types/picomatch": "^2.2.6",
"@types/rimraf": "^3.0.0",
"@types/source-map-support": "^0.5.3",
"@types/which": "^2.0.0",
"@types/ws": "^7.4.5",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"ava": "^3.15.0",
"esbuild": "^0.12.9",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"vitepress": "^0.15.5",
"which": "^2.0.2"
},
"engines": {
"node": ">=10.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/miniflare.git"
},
"bugs": {
"url": "https://github.com/cloudflare/miniflare/issues"
},
"homepage": "https://miniflare.dev/",
"volta": {
"node": "14.17.1"
}
}