-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "libsemaphore",
"version": "1.0.15",
"description": "A Semaphore and MicroMix client library",
"main": "build/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare": "npm run build",
"test": "./scripts/downloadSnarks.sh && jest --force-exit",
"test-debug": "./scripts/downloadSnarks.sh && NODE_ENV=local-dev node --inspect-brk ./node_modules/.bin/jest --testPathPattern=__tests__/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weijiekoh/libsemaphore.git"
},
"author": "Koh Wei Jie",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/weijiekoh/libsemaphore/issues"
},
"homepage": "https://github.com/weijiekoh/libsemaphore#readme",
"devDependencies": {
"@types/jest": "^24.9.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"jest": "^24.8.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
},
"dependencies": {
"circomlib": "0.0.21",
"ethers": "^4.0.37",
"semaphore-merkle-tree": "^1.0.13",
"snarkjs": "0.1.20",
"websnark": "0.0.5"
}
}