-
Notifications
You must be signed in to change notification settings - Fork 759
/
package.json
117 lines (117 loc) · 4.74 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
112
113
114
115
116
117
{
"name": "@ethereumjs/vm",
"version": "5.0.0-beta.1",
"description": "An Ethereum VM implementation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"dist.browser"
],
"browser": "dist.browser/index.js",
"scripts": {
"build": "ethereumjs-config-ts-build",
"build:benchmarks": "npm run build && tsc -p tsconfig.benchmarks.json",
"benchmarks": "node --max-old-space-size=4096 ./scripts/benchmarks/mainnetBlocks.js scripts/benchmarks/fixture/blocks-prestate.json",
"prepublishOnly": "npm run lint && npm run build && npm run test:buildIntegrity",
"coverage": "nyc npm run coverage:test && nyc report --reporter=lcov",
"coverage:test": "tape -r ts-node/register './tests/api/**/*.ts' ./tests/tester.ts --state",
"docs:build": "typedoc --options typedoc.js",
"test:state": "ts-node ./tests/tester --state",
"test:state:allForks": "echo 'Chainstart Homestead dao TangerineWhistle SpuriousDragon Byzantium Constantinople Petersburg Istanbul MuirGlacier Berlin ByzantiumToConstantinopleFixAt5 EIP158ToByzantiumAt5 FrontierToHomesteadAt5 HomesteadToDaoAt5 HomesteadToEIP150At5' | xargs -n1 | xargs -I v1 npm run test:state -- --fork=v1 --verify-test-amount-alltests",
"test:state:selectedForks": "echo 'Homestead TangerineWhistle SpuriousDragon Petersburg' | xargs -n1 | xargs -I v1 npm run test:state -- --fork=v1 --verify-test-amount-alltests",
"test:state:slow": "npm run test:state -- --runSkipped=slow",
"test:buildIntegrity": "npm run test:state -- --test='stackOverflow'",
"test:blockchain": "node -r ts-node/register --stack-size=1500 ./tests/tester --blockchain",
"test:blockchain:allForks": "echo 'Chainstart Homestead dao TangerineWhistle SpuriousDragon Byzantium Constantinople Petersburg Istanbul MuirGlacier Berlin ByzantiumToConstantinopleFixAt5 EIP158ToByzantiumAt5 FrontierToHomesteadAt5 HomesteadToDaoAt5 HomesteadToEIP150At5' | xargs -n1 | xargs -I v1 node -r ts-node/register --stack-size=1500 ./tests/tester --blockchain --fork=v1 --verify-test-amount-alltests",
"test:API": "tape -r ts-node/register --stack-size=1500 './tests/api/**/*.ts'",
"test:API:browser": "karma start karma.conf.js",
"test": "echo \"[INFO] Generic test cmd not used. See package.json for more specific test run cmds.\"",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"format": "ethereumjs-config-format",
"format:fix": "ethereumjs-config-format-fix",
"formatTest": "node ./scripts/formatTest",
"tsc": "ethereumjs-config-tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-vm.git"
},
"keywords": [
"ethereum",
"VM"
],
"dependencies": {
"async-eventemitter": "^0.2.4",
"core-js-pure": "^3.0.1",
"@ethereumjs/block": "3.0.0-beta.1",
"@ethereumjs/blockchain": "5.0.0-beta.1",
"@ethereumjs/common": "2.0.0-beta.1",
"@ethereumjs/tx": "3.0.0-beta.1",
"ethereumjs-util": "^7.0.7",
"functional-red-black-tree": "^1.0.1",
"merkle-patricia-tree": "^4.0.0",
"rustbn.js": "~0.2.0",
"util.promisify": "^1.0.1",
"mcl-wasm": "^0.4.5"
},
"devDependencies": {
"@ethereumjs/config-coverage": "^2.0.0",
"@ethereumjs/config-typescript": "^2.0.0",
"@ethereumjs/eslint-config-defaults": "^2.0.0",
"@types/benchmark": "^1.0.33",
"@types/bn.js": "^4.11.6",
"@types/core-js": "^2.5.0",
"@types/lru-cache": "^5.1.0",
"@types/node": "^11.13.4",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"benchmark": "^2.1.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-implicit-dependencies": "^1.0.4",
"ethereumjs-testing": "git+https://github.com/ethereumjs/ethereumjs-testing.git#v1.3.3",
"karma": "^5.2.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-tap": "^4.2.0",
"karma-typescript": "^5.2.0",
"level": "^6.0.0",
"level-mem": "^5.0.1",
"minimist": "^1.2.0",
"node-dir": "^0.1.16",
"nyc": "^12.0.0",
"prettier": "^2.0.5",
"rlp": "^2.2.3",
"standard": "^10.0.0",
"tap-spec": "^5.0.0",
"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"
},
"author": "mjbecze <mjbecze@gmail.com>",
"contributors": [
"Alex Beregszaszi <alex@rtfs.hu>"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-vm/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-vm",
"nyc": {
"exclude": [
"tests"
]
},
"standard": {
"ignore": [
"dist/**",
"examples/runcode-browserify.js"
]
}
}