-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 773 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "odiff-dev-monorepo",
"version": "4.3.2",
"private": true,
"author": "odiff contributors",
"license": "MIT",
"workspaces": [
"npm_packages/*"
],
"scripts": {
"update-readme": "node scripts/process-readme.js",
"prepare": "(test -f ./zig-out/bin/odiff && cp ./zig-out/bin/odiff ./npm_packages/odiff-bin/bin/odiff.exe || true)",
"test": "npm run prepare && npm run test -w @odiff/tests && npm run test -w playwright-odiff -- --reporter line",
"test:js": "npm run prepare && npm run test -w @odiff/tests",
"test:docker": "docker run --rm -it --user 1001:1001 --ipc=host -v /home/neogoose/dev/odiff:/workspace -w /workspace mcr.microsoft.com/playwright:v1.56.0-noble bash -c \"npm install --ignore-scripts && npm test\""
}
}