-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.12 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.12 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
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
{
"name": "rainblock-storage",
"version": "v3.2.0",
"description": "Storage layer for the ethereum blockrain project",
"main": "build/index.js",
"scripts": {
"test": "npm run test:node",
"coverage": "istanbul cover ./test/index.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "gts check",
"test:node": "mocha -r ts-node/register src/**/*.spec.ts --timeout 40000",
"typedoc": "typedoc --out docs $(pwd)/src --target esnext --mode file --tsconfig ./tsconfig.json --excludePrivate --excludeProtected --excludeNotExported --exclude '**/*+(spec|bench).ts'",
"check": "gts check",
"clean": "gts clean",
"compile": "mkdir -p build/src; mkdir logs; tsc -p .",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run check",
"start": "node -r ts-node/register src/server.ts -1 50051",
"prepare": "npm run compile"
},
"author": {
"name": "soujanya",
"email": "soujanyap95@gmail.com"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/SoujanyaPonnapalli/rainblock-storage"
},
"bugs": {
"url": ""
},
"keywords": [
"ethereum",
"storage",
"scaling",
"sharding"
],
"license": "Apache-2.0",
"dependencies": {
"@rainblock/ethereum-block": "^2.1.3",
"@rainblock/merkle-patricia-tree": "5.0.0",
"@rainblock/protocol": "^4.0.0",
"bigint-hash": "^0.2.2",
"js-yaml": "^3.13.1",
"multimap": "^1.0.2",
"wait-for-stuff": "^1.4.0"
},
"contributors": [
"Michael Wei (https://gitlab.com/no2chem)"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/js-yaml": "^3.12.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@types/stream-json": "^1.0.0",
"async-chunks": "^1.1.0",
"babel-preset-env": "^1.3.1",
"benchmark": "^2.1.4",
"caporal": "^1.1.0",
"chai": "^4.2.0",
"gts": "^0.9.0",
"keccak": "^2.0.0",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"stream-chain": "^2.1.0",
"stream-json": "^1.2.1",
"ts-node": "^7.0.1",
"typedoc": "0.14.2",
"typescript": "^3.4.3",
"zlib": "^1.0.5"
}
}