-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 778 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "m68k-nibbles",
"private": true,
"type": "module",
"packageManager": "yarn@4.13.0",
"scripts": {
"test": "yarn test:station",
"test:metadata": "node --test ./scripts/test-station/*.test.mjs",
"test:station": "yarn test:metadata && node ./scripts/test-station/run-cli.mjs run --config ./test-station.config.mjs --no-coverage",
"test:station:coverage": "yarn test:metadata && node ./scripts/test-station/run-cli.mjs run --config ./test-station.config.mjs --coverage",
"test:benchmark:station": "yarn test:metadata && node ./scripts/test-station/run-cli.mjs run --config ./test-station.config.mjs --no-coverage --package benchmark",
"test:coverage": "yarn test:station:coverage"
},
"devDependencies": {
"dotenv": "^16.6.1"
}
}