-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
44
45
{
"name": "libkzg",
"version": "0.0.1",
"description": "A minimal KZG polynominal commitment library with a Solidity verifier",
"main": "build/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"prepare": "npm run build",
"ganache": "etherlime ganache --port 8545 --gasLimit 10000000 --mnemonic 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat'",
"test": "jest --force-exit libkzg.test.ts",
"test-debug": "node --inspect-brk ./node_modules/.bin/jest --testPathPattern=__tests__/libkzg.test.ts",
"test-sol-verifier": "jest --force-exit solVerifier.test.ts",
"test-sol-verifier-debug": "node --inspect-brk ./node_modules/.bin/jest --testPathPattern=__tests__/solVerifier.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weijiekoh/libkzg.git"
},
"author": "Koh Wei Jie",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/weijiekoh/libkzg",
"_moduleAliases": {
"@libkzg": "."
},
"devDependencies": {
"@types/jest": "^26.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"etherlime": "^2.3.3",
"ethers": "^5.0.3",
"etherlime-lib": "^1.2.3",
"ganache": "^6.4.4",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"dependencies": {
"@guildofweavers/galois": "^0.4.22",
"argparse": "^1.0.10",
"ffjavascript": "0.1.3",
"module-alias": "^2.2.2",
"rustbn.js": "^0.2.0"
}
}