-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "cloudflare-worker-local",
"version": "1.15.0",
"description": "Run a Cloudflare-compatible Worker Locally",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm install && git diff --quiet && npm test && npx standard-version && git push --follow-tags origin",
"test": "jest",
"test-ci": "jest --ci --reporters=jest-junit --reporters=default --coverage --coverageReporters=cobertura --coverageReporters=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gja/cloudflare-worker-local.git"
},
"author": "Tejas Dinkar <tejas@gja.in>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gja/cloudflare-worker-local/issues"
},
"homepage": "https://github.com/gja/cloudflare-worker-local#readme",
"dependencies": {
"@iarna/toml": "^2.2.3",
"atob": "^2.1.2",
"body-parser": "^1.18.3",
"btoa": "^1.2.1",
"express": "^4.16.4",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.7"
},
"optionalDependencies": {
"minio": "^7.0.15"
},
"devDependencies": {
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"rimraf": "^3.0.2",
"standard-version": "^8.0.1",
"supertest": "^3.3.0"
},
"engines": {
"node": ">=15.0.0"
},
"bin": {
"cloudflare-worker-local": "./cli.js"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/examples"
]
}
}