This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
77 lines (77 loc) · 2.21 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
{
"name": "ethereumjs-common",
"version": "1.5.0",
"description": "Resources common to all Ethereum implementations",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "ethereumjs-config-build",
"prepublishOnly": "npm run test && npm run build",
"coverage": "ethereumjs-config-coverage",
"coveralls": "ethereumjs-config-coveralls",
"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",
"unitTests": "ts-node ./node_modules/tape/bin/tape ./tests/*.ts",
"test": "npm run lint && npm run unitTests",
"test:fix": "npm run lint:fix && npm run unitTests",
"docs:build": "typedoc --out docs --excludePrivate --excludeExternals --mode file --readme none --theme markdown --mdEngine github src/*.ts src/genesisStates/*.ts"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-common.git"
},
"keywords": [
"ethereum",
"ethereumjs",
"constants",
"parameters",
"genesis",
"networks",
"bootstrap"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-common/issues"
},
"homepage": "https://github.com/ethereumjs-ethereumjs/common",
"devDependencies": {
"@ethereumjs/config-nyc": "^1.1.0",
"@ethereumjs/config-prettier": "^1.1.0",
"@ethereumjs/config-tsc": "^1.1.0",
"@ethereumjs/config-tslint": "^1.1.0",
"@types/node": "^10.12.2",
"@types/tape": "^4.2.33",
"coveralls": "^3.0.1",
"husky": "^2.1.0",
"nyc": "^11.7.1",
"prettier": "^1.15.3",
"tape": "^4.9.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typedoc": "^0.14.0",
"typedoc-plugin-markdown": "^1.1.21",
"typescript": "^3.2.2",
"typestrict": "^1.0.2"
},
"maintainers": [
{
"name": "Holger Drewes",
"email": "Holger.Drewes@gmail.com"
}
],
"dependencies": {}
}