-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.27 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.27 KB
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
{
"name": "firewall-node",
"scripts": {
"install": "node scripts/install.js",
"install-lib-only": "node scripts/install.js --lib-only",
"install-e2e-only": "node scripts/install.js --end2end-only",
"install-benchmarks-only": "node scripts/install.js --benchmarks-only",
"containers": "cd sample-apps && docker compose up -d --remove-orphans --build",
"build": "node scripts/build.js",
"watch": "cd library && npm run build:watch",
"test": "cd library && npm run test",
"test:ci": "cd library && npm run test:ci",
"test:new": "cd library && npm run test:new",
"test:ci:new": "cd library && npm run test:ci:new",
"test:esm": "node scripts/tests-esm.mjs",
"lint": "cd library && npm run lint",
"end2end": "cd end2end && npm run test",
"end2end:new": "cd end2end && npm run test:new",
"format": "oxfmt --write .",
"benchmark": "node scripts/benchmark.js",
"sample-app": "node scripts/run-sample-app.js",
"format:check": "oxfmt --check .",
"check-unsupported": "node scripts/unsupported-check.mts"
},
"devDependencies": {
"astring": "^1.9.0",
"follow-redirects": "^1.15.11",
"oxc-parser": "^0.96.0",
"oxc-transform": "^0.96.0",
"oxc-walker": "^0.5.2",
"oxfmt": "^0.27.0",
"tar": "^7.5.1"
}
}