forked from ethereumjs/ethereumjs-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.38 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
{
"name": "ethereumjs-blockchain",
"version": "3.4.0",
"description": "A module to store and interact with blocks",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/**/*.js"
],
"scripts": {
"prepublishOnly": "npm run lint && npm run test && npm run build",
"build": "ethereumjs-config-build",
"coverage": "ethereumjs-config-coverage",
"coveralls": "ethereumjs-config-coveralls",
"docs:build": "typedoc --out docs --mode file --readme none --theme markdown --mdEngine github --excludeNotExported src",
"format": "ethereumjs-config-format",
"format:fix": "ethereumjs-config-format-fix",
"tslint": "ethereumjs-config-tslint",
"tslint:fix": "ethereumjs-config-tslint-fix",
"tsc": "ethereumjs-config-tsc",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"test": "ts-node node_modules/tape/bin/tape ./test/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-blockchain.git"
},
"keywords": [
"ethereum",
"blockchain"
],
"browser": {
"util": "./node_modules/util/util.js"
},
"author": "mjbecze <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-blockchain/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-blockchain#readme",
"dependencies": {
"async": "^2.6.1",
"ethashjs": "~0.0.7",
"ethereumjs-block": "~2.2.0",
"ethereumjs-common": "^1.2.1",
"ethereumjs-util": "^6.1.0",
"flow-stoplight": "^1.0.0",
"level-mem": "^3.0.1",
"lru-cache": "^5.1.1",
"rlp": "^2.2.2",
"semaphore": "^1.1.0",
"util": "^0.12.0"
},
"devDependencies": {
"@types/levelup": "^3.1.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/async": "^2.4.1",
"@types/bn.js": "^4.11.4",
"@types/lru-cache": "^5.1.0",
"@types/node": "^11.11.4",
"@types/semaphore": "^1.1.0",
"@types/tape": "^4.2.33",
"coveralls": "^3.0.2",
"nyc": "^13.0.1",
"prettier": "^1.16.4",
"tape": "^4.9.1",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.27",
"typescript": "^3.3.3333",
"typestrict": "^1.0.2"
}
}