-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 KB
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
{
"name": "rainblock-verifier",
"version": "1.0.0",
"description": "A transaction verifier and orderer for RainBlock",
"main": "index.js",
"bin": {
"verifier": "src/verifier.ts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"gts": "^0.9.0",
"typescript": "^3.3.4000"
},
"dependencies": {
"@rainblock/ethereum-block": "^2.1.3",
"@rainblock/merkle-patricia-tree": "^5.0.0",
"@rainblock/protocol": "^4.1.1",
"@types/cli-progress": "^1.8.1",
"@types/js-yaml": "^3.12.0",
"@types/node": "^11.11.4",
"@types/stream-chain": "^2.0.0",
"@types/stream-json": "^1.0.0",
"async-chunks": "^1.1.0",
"benchmark": "^2.1.4",
"bigint-hash": "^0.2.2",
"caporal": "^1.1.0",
"cli-progress": "^2.1.1",
"ethereumjs-util": "^6.1.0",
"global-package-version": "^1.1.0",
"js-yaml": "^3.13.0",
"keccak": "^2.0.0",
"rlp-stream": "^0.1.0",
"secp256k1": "^3.6.2",
"stream-chain": "^2.1.0",
"stream-json": "^1.2.1",
"ts-node": "^8.0.3"
}
}