forked from cobusgreyling/loop-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 686 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "loop-engineering",
"private": true,
"type": "module",
"scripts": {
"validate:registry": "node scripts/validate-registry.mjs",
"check:loop-init": "node scripts/check-loop-init-sync.mjs",
"test:loop-audit": "cd tools/loop-audit && npm test",
"test:loop-init": "cd tools/loop-init && npm test",
"test:loop-cost": "cd tools/loop-cost && npm test",
"test:tools": "npm run test:loop-audit && npm run test:loop-init && npm run test:loop-cost",
"build:tools": "cd tools/loop-audit && npm run build && cd ../loop-init && npm run build && cd ../loop-cost && npm run build"
},
"devDependencies": {
"ajv": "^8.17.1",
"yaml": "^2.8.0"
}
}