This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
79 lines (79 loc) · 2.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "rollup",
"version": "0.0.1",
"description": "Rollup Implementation",
"main": "index.js",
"directories": {
"doc": "doc"
},
"scripts": {
"ganache": "npx ganache-cli -a 100 --defaultBalanceEther 1000000 > ganache-output.log &",
"test:circuits": "npx mocha --max-old-space-size=4096 --timeout 20000 ./test/circuits",
"test:utils": "npx mocha --timeout 20000 ./test/rollup-utils",
"test:js": "npx mocha --timeout 20000 ./test/js",
"test:contracts": "npm run ganache && npx truffle test ./test/contracts/*.test.js ; rm './ganache-output.log' ; pkill -x 'node*'",
"test:rollup": "npm run test:circuits && npm run test:utils && npm run test:js && npm run test:contracts",
"test:coverage": "npx truffle run coverage --file='./test/contracts/*.test.js'",
"build:webapp": "browserify rollup-cli/index.js -s rollup > simple-webapp/src/utils/bundle-cli.js && browserify rollup-operator/index.js -s operator > simple-webapp/src/utils/bundle-op.js && simple-webapp/src/utils/disable-eslint.sh",
"test:all": "npm run test:rollup && cd rollup-cli && npm run test:all && cd ../rollup-operator && npm run test:all && cd ../cli-pob && npm run test:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iden3/rollup.git"
},
"keywords": [
"rollup",
"blockchain",
"scalability",
"ethereum",
"zksnarks",
"zero",
"knowledge",
"circom"
],
"author": "Jordi Baylina",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/iden3/rollup/issues"
},
"homepage": "https://github.com/iden3/rollup#readme",
"devDependencies": {
"acorn": "^7.1.1",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.0",
"ganache-cli": "^6.9.1",
"mocha": "^6.2.0",
"solidity-coverage": "^0.7.2"
},
"dependencies": {
"@openzeppelin/contracts": "^3.0.0-beta.0",
"abi-decoder": "^2.2.0",
"axios": "^0.19.0",
"big-integer": "^1.6.48",
"bip39": "^3.0.2",
"blake-hash": "^1.1.0",
"blakejs": "^1.1.0",
"chai": "^4.2.0",
"circom": "^0.5.10",
"circomlib": "^0.2.3",
"dotenv": "^8.2.0",
"elliptic": "^6.5.1",
"ethereumjs-util": "^6.1.0",
"ethers": "^4.0.38",
"ffjavascript": "^0.1.3",
"hdkey": "^1.1.1",
"ip": "^1.1.5",
"js-sha3": "^0.8.0",
"level": "^5.0.1",
"morgan": "^1.9.1",
"snarkjs": "^0.1.31",
"solc": "^0.6.1",
"tmp-promise": "^3.0.2",
"truffle": "^5.1.16",
"truffle-hdwallet-provider": "^1.0.17",
"v8-compile-cache": "^2.1.0",
"web3": "^1.2.5"
}
}