-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 970 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 970 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
{
"name": "oxc-ecosystem-ci",
"version": "0.0.0",
"description": "Integration tests against other projects using oxlint and oxfmt",
"private": true,
"main": "test.js",
"type": "commonjs",
"scripts": {
"clone:oxlint": "node bin/clone.js --oxlint",
"test:oxlint": "RUST_BACKTRACE=1 node bin/test.js --oxlint",
"test:default:oxlint": "RUST_BACKTRACE=1 node bin/test.js --oxlint $(which oxlint)",
"update:oxlint": "node bin/update.js --oxlint",
"reset:oxlint": "node bin/reset.js --oxlint",
"clone:oxfmt": "node bin/clone.js --oxfmt",
"test:oxfmt": "RUST_BACKTRACE=1 node bin/test.js --oxfmt",
"update:oxfmt": "node bin/update.js --oxfmt",
"reset:oxfmt": "node bin/reset.js --oxfmt",
"clean": "node bin/clean.js",
"lint": "npx oxlint@latest ."
},
"packageManager": "pnpm@11.0.9",
"dependencies": {
"json-strip-comments": "^3.0.0"
}
}