forked from sc-forks/ethereumjs-vm-sc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
{
"name": "ethereumjs-vm",
"version": "2.3.3",
"description": "an ethereum VM implementation",
"main": "index.js",
"dependencies": {
"async": "^2.1.2",
"async-eventemitter": "^0.2.2",
"ethereum-common": "0.2.0",
"ethereumjs-account": "^2.0.3",
"ethereumjs-block": "~1.7.0",
"ethereumjs-util": "^5.1.3",
"fake-merkle-patricia-tree": "^1.0.1",
"functional-red-black-tree": "^1.0.1",
"merkle-patricia-tree": "^2.1.2",
"rustbn.js": "~0.1.1",
"safe-buffer": "^5.1.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
"ethereumjs-blockchain": "~2.1.0",
"ethereumjs-testing": "https://github.com/ethereumjs/ethereumjs-testing",
"ethereumjs-tx": "1.3.3",
"level": "^1.4.0",
"leveldown": "^1.4.6",
"levelup": "^1.3.2",
"memdown": "^1.1.0",
"minimist": "^1.1.1",
"standard": "^10.0.0",
"tape": "4.6.3"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"scripts": {
"testVM": "node ./tests/tester -v",
"testState": "node ./tests/tester -s",
"testBlockchain": "node --stack-size=1500 ./tests/tester -b --excludeDir='GeneralStateTests'",
"testBlockchainGeneralStateTests": "node --stack-size=1500 ./tests/tester -b --dir='GeneralStateTests'",
"testBlockchainBlockGasLimit": "node --stack-size=1500 ./tests/tester -b --dir='bcBlockGasLimitTest'",
"testBlockchainValid": "node --stack-size=1500 ./tests/tester -b --dir='bcValidBlockTest'",
"testBlockchainTotalDifficulty": "node --stack-size=1500 ./tests/tester -b --dir='bcTotalDifficultyTest'",
"lint": "standard",
"test": "node ./tests/tester -a"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-vm.git"
},
"keywords": [
"ethereum",
"VM"
],
"author": "mjbecze <[email protected]>",
"contributors": [
"Alex Beregszaszi <[email protected]>"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-vm/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-vm",
"standard": {
"ignore": [
"dist/**",
"examples/runcode-browserify.js"
]
}
}