-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 KB
/
package.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "accumulators",
"private": true,
"version": "1.0.0",
"description": "A set of packages around cryptographic accumulators",
"keywords": [],
"homepage": "https://github.com/HerodotusDev/accumulators",
"bugs": {
"url": "https://github.com/HerodotusDev/accumulators/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/HerodotusDev/accumulators.git"
},
"license": "GPL-3.0-or-later",
"author": "Herodotus Dev Ltd",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "pnpm build",
"build": "lerna run build",
"test": "jest",
"test:core": "pnpm test packages/core",
"test:hashes": "pnpm test packages/hashes",
"test:memory": "pnpm test packages/memory",
"test:rocksdb": "pnpm test packages/rocksdb",
"test:sqlite3": "pnpm test packages/sqlite3",
"e:memory:start": "pnpm --cwd ./examples/memory start",
"e:memory:dev": "pnpm --cwd ./examples/memory dev",
"e:rocksdb:start": "pnpm --cwd ./examples/rocksdb start",
"e:rocksdb:dev": "pnpm --cwd ./examples/rocksdb dev",
"manual-version": "lerna version --no-private"
},
"devDependencies": {
"@jest/types": "^29.5.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"jest": "^29.5.0",
"lerna": "^7.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}