-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
66 lines (66 loc) · 2.12 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
62
63
64
65
66
{
"name": "@fastly/js-compute",
"version": "3.28.0",
"license": "Apache-2.0",
"main": "js-compute-runtime-cli.js",
"types": "types/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/fastly/js-compute-runtime"
},
"bin": {
"js-compute": "js-compute-runtime-cli.js",
"js-compute-runtime": "js-compute-runtime-cli.js"
},
"files": [
"types",
"js-compute-runtime-cli.js",
"fastly.wasm",
"fastly.debug.wasm",
"fastly-weval.wasm",
"fastly-ics.wevalcache",
"src",
"index.d.ts",
"package.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "npm run test:types && npm run test:cli",
"test:cli": "brittle --bail integration-tests/cli/**.test.js",
"test:integration": "node ./integration-tests/js-compute/test.js",
"test:wpt": "tests/wpt-harness/build-wpt-runtime.sh && node ./tests/wpt-harness/run-wpt.mjs -vv",
"test:wpt:debug": "tests/wpt-harness/build-wpt-runtime.sh --debug-build && node ./tests/wpt-harness/run-wpt.mjs -vv",
"test:types": "tsd",
"build": "./runtime/fastly/build-release.sh",
"build:debug": "./runtime/fastly/build-debug.sh",
"build:weval": "./runtime/fastly/build-release-weval.sh",
"build:debug:info": "./runtime/fastly/build-debug.sh --keep-debug-info",
"format-changelog": "node ci/format-changelog.js CHANGELOG.md",
"format": "prettier --write *.js src/*.js integration-tests types test-d",
"format:check": "prettier --check *.js src/*.js integration-tests"
},
"devDependencies": {
"@jakechampion/cli-testing-library": "^1.0.0",
"brittle": "^3.5.2",
"eslint": "^9.6.0",
"get-bin-path": "^11.0.0",
"prettier": "^3.3.3",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"tsd": "^0.31.1",
"typescript": "^5.5",
"unified": "^11.0.5"
},
"dependencies": {
"@bytecodealliance/jco": "^1.7.0",
"@bytecodealliance/wizer": "^7.0.5",
"@bytecodealliance/weval": "^0.3.2",
"acorn": "^8.13.0",
"acorn-walk": "^8.3.4",
"esbuild": "^0.24.0",
"magic-string": "^0.30.12",
"regexpu-core": "^6.1.1"
}
}