-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.99 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
{
"name": "optimistic-roll-in",
"version": "0.0.16",
"description": "Layer-Agnostic Optimistic Roll-Ins - A Proof of Concept.",
"main": "js/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/circle-free/optimistic-roll-in.git"
},
"keywords": [
"optimistic-roll-in",
"optimism",
"ethereum",
"merkle-tree",
"merkle-trees",
"solidity"
],
"scripts": {
"test": "mocha 'js/tests' && truffle test",
"test-eth": "truffle test",
"test-eth-matic": "truffle test --network matic",
"test-eth-ropsten": "truffle test --network ropsten",
"test-eth-rinkeby": "truffle test --network rinkeby",
"test-js": "mocha 'js/tests'",
"ganache": "ganache-cli",
"lint-eth": "solhint 'eth/contracts/**/*.sol'",
"prettier": "prettier --write 'eth/contracts/**/*.sol' 'eth/tests/**/*.js' 'js/src/**/*.js' 'js/tests/**/*.js'",
"prettier-eth": "prettier --write 'eth/contracts/**/*.sol' 'eth/tests/**/*.js'",
"prettier-js": "prettier --write 'js/src/**/*.js' 'js/tests/**/*.js'",
"compile-eth": "truffle compile",
"migrate": "truffle migrate --network development",
"migrate-matic": "truffle migrate --network matic",
"migrate-ropsten": "truffle migrate --network ropsten",
"migrate-rinkeby": "truffle migrate --network rinkeby"
},
"author": "Circle-Free",
"license": "MIT",
"bugs": {
"url": "https://github.com/circle-free/optimistic-roll-in/issues"
},
"homepage": "https://github.com/circle-free/optimistic-roll-in#readme",
"dependencies": {
"ethereum-tx-decoder": "^3.0.0",
"merkle-trees": "^0.2.3",
"sha3": "^2.1.3"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ganache-cli": "^6.12.0",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"solhint": "^3.2.2",
"solpp": "^0.11.2",
"truffle": "^5.1.49"
},
"engines": {
"node": ">=14.0.0"
}
}