-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1015 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
26
27
28
{
"name": "crypto-lab-bulletproofs",
"version": "1.0.0",
"description": "Live Bulletproofs range proofs over ristretto255",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "npm run build && gh-pages -d dist",
"test": "tsx scripts/test-suite.mjs && tsx scripts/test-boundaries.mjs && tsx scripts/test-serialize.mjs && tsx scripts/test-true-aggregate.mjs && tsx scripts/test-batch-verify.mjs && tsx scripts/test-extras.mjs && tsx scripts/test-ipa.mjs && tsx scripts/test-proof.mjs && tsx scripts/smoke-ui.mjs && tsx scripts/test-a11y.mjs",
"test:a11y": "playwright test"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.61.1",
"@types/node": "^20.0.0",
"gh-pages": "^6.1.0",
"linkedom": "^0.18.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0",
"vite": "^5.0.0"
},
"dependencies": {
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0"
}
}