-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 984 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 984 Bytes
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
{
"name": "workers-ci",
"version": "0.1.20",
"description": "Workers continuous integration tool",
"main": "dist.js",
"bin": "dist.js",
"repository": "https://github.com/adaptive/workers-ci",
"author": "Hugo Romano <hugoromano@gmail.com>",
"keywords": [
"cloudflare",
"serverless",
"edge",
"workers",
"ci"
],
"license": "MIT",
"devDependencies": {
"esbuild": "0.27.4",
"prettier": "3.8.2"
},
"scripts": {
"build": "npx esbuild --minify index.js --outfile=dist.js",
"dry-run": "npm pack --dry-run",
"format": "prettier --write '**/*.{js,json}' '!dist.js' --arrow-parens avoid --trailing-comma none",
"test": "esbuild --minify index.js --outfile=dist.js && node dist.js build test/worker.js"
},
"private": false,
"funding": {
"type": "github",
"url": "https://github.com/sponsors/adaptive"
},
"dependencies": {
"isomorphic-fetch": "3.0.0",
"webpack": "5.106.0",
"yargs": "18.0.0"
}
}