-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 2.36 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
{
"name": "biturbo",
"version": "0.0.1",
"description": "Eth1 EE using turboproofs",
"main": "index.js",
"scripts": {
"token": "npm run token:relayer && npm run token:build && npm run token:run",
"token:relayer": "ts-node src/relayer/bin.ts",
"token:build": "gulp token",
"token:run": "scout.ts turbo-token.yaml",
"token:relayer:rpc": "ts-node src/relayer/rpc.ts test/fixture/eth_getproof_result.json",
"token:relayer:realistic": "ts-node src/relayer/bin.ts --realistic test/fixture/eth_getproof_result.json",
"token:realistic": "npm run token:relayer:realistic && npm run token:build && scout.ts turbo-token-realistic.yaml",
"evm": "npm run evm:relayer && npm run evm:build && npm run evm:run",
"evm:relayer": "ts-node src/relayer/bin.ts --basicEvm",
"evm:build": "gulp evm",
"evm:run": "npx scout.ts basic-evm.yaml",
"build": "ethereumjs-config-build",
"build:as": "gulp",
"tslint": "tslint -p ./tsconfig.json src/**/*.ts",
"tslint:fix": "tslint --fix --format stylish -p ./tsconfig.json src/**/*.ts",
"lint": "npm run format && npm run tslint && npm run tsc",
"format": "ethereumjs-config-format",
"format:fix": "ethereumjs-config-format-fix",
"tsc": "ethereumjs-config-tsc",
"test": "ts-node node_modules/tape/bin/tape test/**/*.ts",
"test:as": "asp"
},
"devDependencies": {
"@as-pect/assembly": "^2.6.0",
"@as-pect/cli": "^2.6.0",
"@as-pect/core": "^2.6.0",
"@ethereumjs/config-nyc": "^1.1.1",
"@ethereumjs/config-prettier": "^1.1.1",
"@ethereumjs/config-tsc": "^1.1.1",
"@ethereumjs/config-tslint": "^1.1.1",
"@types/bn.js": "^4.11.5",
"@types/lru-cache": "^5.1.0",
"@types/node": "^12.7.5",
"@types/tape": "^4.2.33",
"assemblyscript": "^0.8.1",
"gulp": "^4.0.2",
"prettier": "^1.18.2",
"scout.ts": "0.0.2",
"tape": "^4.11.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"typestrict": "^1.0.2",
"util.promisify": "^1.0.0",
"wabt": "^1.0.11"
},
"dependencies": {
"axios": "^0.19.0",
"bn.js": "^5.0.0",
"ethereumjs-account": "^3.0.0",
"ethereumjs-testing": "git+https://github.com/ethereumjs/ethereumjs-testing.git#v1.2.7",
"ethereumjs-util": "^6.1.0",
"ethereumjs-vm": "^4.1.0",
"ethereumjs-wallet": "^0.6.3",
"merkle-patricia-tree": "^3.0.0",
"rlp": "^2.2.3"
}
}