forked from ChainSafe/lodestar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "@chainsafe/eth2.0-config",
"version": "0.1.1",
"description": "Chain configuration required for eth2.0",
"author": "ChainSafe Systems",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"homepage": "https://github.com/ChainSafe/lodestar#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rm -rf lib && rm -f tsconfig.tsbuildinfo",
"build": "yarn build:lib && yarn build:types",
"build:release": "yarn run clean && yarn run build && yarn run build:docs",
"build:types": "tsc --incremental --declaration --outDir lib --emitDeclarationOnly",
"build:lib": "babel src -x .ts -d lib --source-maps",
"build:docs": "typedoc --exclude src/index.ts --out docs src",
"check-types": "tsc --noEmit --incremental",
"lint": "eslint --color --ext .ts src/",
"lint:fix": "eslint --color --ext .ts src/ --fix",
"prepublishOnly": "yarn build",
"pretest": "yarn run check-types",
"test": "mocha -r ./.babel-register 'test/**/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com:ChainSafe/lodestar.git"
},
"keywords": [
"ethereum",
"eth2.0",
"beacon",
"blockchain"
],
"dependencies": {
"@chainsafe/eth2.0-params": "0.1.0",
"@chainsafe/eth2.0-types": "^0.1.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.0"
}
}