-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "cloudflare-workers-webpack-plugin",
"version": "3.0.1",
"description": "Launch Cloudflare Workers to the Edge from the comfort of your build step 🚀",
"main": "dist/index.js",
"author": "Dave Willenberg <[email protected]> (https://github.com/detroitenglish)",
"license": "MIT",
"bugs": {
"url": "https://github.com/detroitenglish/cloudflare-workers-webpack-plugin"
},
"files": [
"dist"
],
"homepage": "https://github.com/detroitenglish/cloudflare-workers-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/detroitenglish/cloudflare-workers-webpack-plugin.git"
},
"scripts": {
"lint": "eslint src .babelrc.js",
"clean": "del-cli dist/*",
"bundle": "babel src -d dist",
"build": "npm-run-all -s lint clean bundle"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.21.1",
"colors": "^1.4.0",
"core-js": "^3.12.1",
"form-data": "^2.3.3",
"is-valid-host": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"del-cli": "^3.0.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0"
},
"peerDependencies": {
"webpack": ">=4"
},
"keywords": [
"webpack",
"plugin",
"cloudflare",
"workers",
"serverless",
"webpack-plugin",
"cloudflare-workers"
],
"engines": {
"node": ">=12"
}
}