forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 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
{
"name": "@ethereumjs/common",
"version": "2.1.0",
"description": "Resources common to all Ethereum implementations",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"dist.browser"
],
"browser": "dist.browser/index.js",
"scripts": {
"build": "ethereumjs-config-ts-build",
"prepublishOnly": "npm run build && npm run test",
"coverage": "ethereumjs-config-coverage",
"format": "ethereumjs-config-format",
"format:fix": "ethereumjs-config-format-fix",
"tsc": "ethereumjs-config-ts-compile",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"test": "tape -r ts-node/register ./tests/*.spec.ts",
"docs:build": "typedoc --options typedoc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-vm.git"
},
"keywords": [
"ethereum",
"ethereumjs",
"constants",
"parameters",
"genesis",
"networks",
"bootstrap"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-vm/issues?q=is%3Aissue+label%3A%22package%3A+common%22"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-vm/tree/master/packages/common#readme",
"dependencies": {
"crc-32": "^1.2.0"
},
"devDependencies": {
"@ethereumjs/config-coverage": "^2.0.0",
"@ethereumjs/config-typescript": "^2.0.0",
"@ethereumjs/eslint-config-defaults": "^2.0.0",
"@types/node": "^11.13.4",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-implicit-dependencies": "^1.0.4",
"nyc": "^14.0.0",
"prettier": "^2.0.5",
"tape": "^4.10.1",
"ts-node": "^8.8.2",
"tslint": "^5.16.0",
"typedoc": "next",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.9.3",
"typestrict": "^1.0.2"
},
"maintainers": [
{
"name": "Holger Drewes",
"email": "[email protected]"
}
]
}