-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "@fastly/compute-js-static-publish",
"type": "module",
"version": "6.2.0",
"description": "Static Publisher for Fastly Compute JavaScript",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"clean": "rimraf build",
"prepack": "npm run build",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"compute-js-static-publish": "./build/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastly/compute-js-static-publish.git"
},
"keywords": [
"compute-js",
"javascript",
"static",
"serve"
],
"author": "Katsuyuki Omuro <komuro@fastly.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastly/compute-js-static-publish/issues"
},
"homepage": "https://github.com/fastly/compute-js-static-publish#readme",
"dependencies": {
"command-line-args": "^5.2.1",
"glob-to-regexp": "^0.4.1"
},
"peerDependencies": {
"@fastly/js-compute": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@fastly/js-compute": "^3.0.0",
"@types/command-line-args": "^5.2.0",
"@types/glob-to-regexp": "^0.4.1",
"@types/node": "^18.0.0",
"rimraf": "^4.3.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=18"
},
"files": [
"build",
"resources",
"LICENSE",
"package.json",
"README.md",
"SECURITY.md"
]
}