forked from SharzyL/pastebin-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 802 Bytes
/
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
{
"private": true,
"name": "pb",
"version": "1.0.0",
"description": "Pastebin based on Cloudflare worker",
"repository": "https://github.com/SharzyL/pastebin-worker",
"main": "dist/worker.js",
"type": "module",
"scripts": {
"test": "webpack --mode=development && mocha",
"build": "webpack --mode=production"
},
"author": "SharzyL <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cloudflare/wrangler": "^1.19.0",
"argparse": "^2.0.1",
"eslint": "^7.32.0",
"liquidjs": "^9.25.1",
"miniflare": "^1.3.3",
"mocha": "^9.0.3",
"prettier": "^2.3.2",
"remark-cli": "^10.0.0",
"remark-html": "^14.0.0",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"mime": "^2.5.2",
"mime-db": "^1.49.0"
}
}