-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 821 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "does-it-stack",
"version": "1.1.0",
"private": true,
"description": "EverQuest buff stacking checker \u2014 a static site built from the live client's own spell files",
"type": "module",
"scripts": {
"fetch": "node tools/fetch_items.mjs",
"gen": "node tools/gen_spa_js.mjs",
"build": "node tools/gen_spa_js.mjs && node tools/build.mjs",
"serve": "npm run build && node tools/serve.mjs",
"pretest": "node tools/gen_spa_js.mjs",
"test": "node --test",
"verify": "node tools/verify_claims.mjs",
"claims": "node -e \"import('./tools/claims.mjs').then(m=>{const d=m.load();for(const c of d.claims)console.log(c.status.padEnd(11),c.id,'-',c.evidence.length,'evidence');})\"",
"verify:data": "node tools/verify_dataset.mjs"
},
"engines": {
"node": ">=20"
}
}