forked from ChainSafe/lodestar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.3 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@chainsafe/lodestar",
"version": "0.1.0",
"description": "A Typescript implementation of the beacon chain and validator client",
"author": "ChainSafe Systems",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"homepage": "https://github.com/ChainSafe/lodestar#readme",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src -x .ts -d lib --source-maps",
"build:docs": "typedoc --exclude src/index.ts --out docs src",
"check-types": "tsc --noEmit",
"lint": "eslint --ext .ts src/",
"lint-fix": "eslint --ext .ts src/ --fix",
"pretest": "yarn run check-types",
"test:unit": "nyc -r lcov -e .ts mocha -r ./.babel-register 'test/unit/**/*.test.ts' && nyc report",
"test:e2e": "mocha -r ./.babel-register 'test/e2e/**/*.test.ts'",
"test": "yarn test:unit && yarn test:e2e",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com:ChainSafe/lodestar.git"
},
"keywords": [
"Ethereum",
"beacon",
"future",
"p2p",
"blockchain"
],
"dependencies": {
"@chainsafe/bls-js": "^0.1.1",
"@chainsafe/ssz": "^0.2.0",
"@iarna/toml": "^2.2.3",
"@nodeutils/defaults-deep": "^1.1.0",
"@polkadot/util-crypto": "^0.33.27",
"@types/bn.js": "^4.11.4",
"@types/levelup": "^3.1.0",
"assert": "^1.4.1",
"await-to-js": "^2.1.1",
"bignumber.js": "^7.2.1",
"blakejs": "^1.1.0",
"bn.js": "^4.11.8",
"buffer-xor": "^2.0.2",
"commander": "^2.19.0",
"deepmerge": "^3.2.0",
"ethers": "^4.0.27",
"ganache-core": "^2.5.3",
"level": "^4.0.0",
"libp2p": "^0.24.4",
"libp2p-bootstrap": "^0.9.7",
"libp2p-floodsub": "^0.15.8",
"libp2p-kad-dht": "^0.14.12",
"libp2p-mplex": "^0.8.5",
"libp2p-tcp": "^0.13.0",
"libp2p-webrtc-star": "^0.15.8",
"noice-json-rpc": "^1.2.0",
"peer-book": "^0.9.1",
"peer-id": "^0.12.2",
"peer-info": "^0.15.1",
"pouchdb-adapter-memory": "^7.0.0",
"pouchdb-core": "^7.0.0",
"promisify-es6": "^1.0.3",
"winston": "^3.2.1",
"ws": "^6.2.1"
},
"bin": {
"lodestar": "./bin/lodestar",
"lodestar-validator": "./bin/lodestar-validator"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"@polkadot/ts": "^0.1.56",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.17",
"@types/sinon": "^7.0.11",
"@types/ws": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"eslint": "^5.14.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"sinon": "^7.2.7",
"supertest": "^4.0.2",
"ts-node": "^7.0.1",
"typedoc": "^0.14.2",
"typedoc-plugin-external-module-name": "^2.1.0",
"typedoc-plugin-internal-external": "^2.0.2",
"typedoc-plugin-markdown": "^1.2.0",
"typescript": "^3.2.1"
}
}