forked from weijiekoh/poseidon-encryption-circom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.41 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
{
"name": "poseidon-encryption-circom",
"version": "0.0.2",
"description": "Encryption and decryption using Poseidon",
"main": "build/index.js",
"scripts": {
"test-encrypt": "node ./node_modules/.bin/jest poseidonEncrypt.test.ts",
"test-decryptCircuit": "node ./node_modules/.bin/jest poseidonDecryptCircuit.test.ts",
"test-strategy": "node ./node_modules/.bin/jest poseidonStrategy.test.ts",
"test-encrypt-debug": "node --inspect-brk ./node_modules/.bin/jest poseidonEncrypt.test.ts",
"watch": "tsc --watch",
"build": "tsc",
"prepare": "npm run build",
"test": "jest --force-exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weijiekoh/poseidon-encryption-circom.git"
},
"author": "Koh Wei Jie",
"contributors": [
"Koh Wei Jie",
"Shigoto-dev19 <shigoto-dev19@protonmail.com>"
],
"license": "MIT",
"homepage": "https://github.com/weijiekoh/poseidon-encryption-circom",
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"dependencies": {
"circom_tester": "^0.0.19",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.2",
"ffiasm": "^0.1.3",
"maci-crypto": "^0.7.4",
"path": "^0.12.7",
"snarkjs": "^0.3.60"
}
}