UNPKG

4.14 kBJSONView Raw
1{
2 "name": "ethereumjs-vm",
3 "version": "4.2.0",
4 "description": "An Ethereum VM implementation",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "files": [
8 "dist/**/*"
9 ],
10 "scripts": {
11 "build": "ethereumjs-config-build",
12 "prepublishOnly": "npm run lint && npm run build && npm run test:buildIntegrity",
13 "coverage": "nyc npm run coverage:test && nyc report --reporter=lcov",
14 "coverage:test": "npm run build && tape './tests/api/**/*.js' ./tests/tester.js --state --dist",
15 "docs:build": "typedoc lib",
16 "test:vm": "node ./tests/tester --vm",
17 "test:state": "ts-node ./tests/tester --state",
18 "test:state:allForks": "npm run test:state -- --fork=Byzantium && npm run test:state -- --fork=Constantinople && npm run test:state -- --fork=Petersburg && npm run test:state -- --fork=Istanbul && npm run test:state -- --fork=MuirGlacier",
19 "test:state:selectedForks": "npm run test:state -- --fork=Petersburg && npm run test:state -- --fork=Istanbul && npm run test:state -- --fork=MuirGlacier",
20 "test:state:slow": "npm run test:state -- --runSkipped=slow",
21 "test:buildIntegrity": "npm run test:state -- --test='stackOverflow'",
22 "test:blockchain": "node -r ts-node/register --stack-size=1500 ./tests/tester --blockchain",
23 "test:API": "npm run build && ts-node ./node_modules/tape/bin/tape './tests/api/**/*.js'",
24 "test:API:browser": "npm run build && karma start karma.conf.js",
25 "test": "echo \"[INFO] Generic test cmd not used. See package.json for more specific test run cmds.\"",
26 "tslint": "ethereumjs-config-tslint",
27 "tslint:fix": "ethereumjs-config-tslint-fix",
28 "lint": "ethereumjs-config-lint",
29 "lint:fix": "ethereumjs-config-lint-fix",
30 "format": "ethereumjs-config-format",
31 "format:fix": "ethereumjs-config-format-fix",
32 "formatTest": "node ./scripts/formatTest",
33 "tsc": "ethereumjs-config-tsc"
34 },
35 "husky": {
36 "hooks": {
37 "pre-push": "npm run lint"
38 }
39 },
40 "repository": {
41 "type": "git",
42 "url": "git+https://github.com/ethereumjs/ethereumjs-vm.git"
43 },
44 "keywords": [
45 "ethereum",
46 "VM"
47 ],
48 "dependencies": {
49 "async": "^2.1.2",
50 "async-eventemitter": "^0.2.2",
51 "core-js-pure": "^3.0.1",
52 "ethereumjs-account": "^3.0.0",
53 "ethereumjs-block": "^2.2.2",
54 "ethereumjs-blockchain": "^4.0.3",
55 "ethereumjs-common": "^1.5.0",
56 "ethereumjs-tx": "^2.1.2",
57 "ethereumjs-util": "^6.2.0",
58 "fake-merkle-patricia-tree": "^1.0.1",
59 "functional-red-black-tree": "^1.0.1",
60 "merkle-patricia-tree": "^2.3.2",
61 "rustbn.js": "~0.2.0",
62 "safe-buffer": "^5.1.1",
63 "util.promisify": "^1.0.0"
64 },
65 "devDependencies": {
66 "@ethereumjs/config-nyc": "^1.1.1",
67 "@ethereumjs/config-prettier": "^1.1.1",
68 "@ethereumjs/config-tsc": "^1.1.1",
69 "@ethereumjs/config-tslint": "^1.1.1",
70 "@types/bn.js": "^4.11.5",
71 "@types/core-js": "^2.5.0",
72 "@types/lru-cache": "^5.1.0",
73 "@types/node": "^11.13.4",
74 "@types/tape": "^4.2.33",
75 "browserify": "^16.2.3",
76 "ethereumjs-testing": "git+https://github.com/ethereumjs/ethereumjs-testing.git#v1.3.0",
77 "husky": "^2.1.0",
78 "karma": "^4.0.1",
79 "karma-browserify": "^6.0.0",
80 "karma-chrome-launcher": "^2.2.0",
81 "karma-firefox-launcher": "^1.1.0",
82 "karma-tap": "^4.1.4",
83 "level": "^6.0.0",
84 "level-mem": "^3.0.1",
85 "minimist": "^1.1.1",
86 "nyc": "^12.0.2",
87 "prettier": "^1.16.4",
88 "rlp": "^2.2.3",
89 "standard": "^10.0.0",
90 "tap-spec": "^5.0.0",
91 "tape": "4.6.3",
92 "ts-node": "^8.6.2",
93 "tslint": "^5.16.0",
94 "typedoc": "^0.14.2",
95 "typedoc-plugin-markdown": "^1.2.1",
96 "typescript": "^3.4.3",
97 "typestrict": "^1.0.2"
98 },
99 "author": "mjbecze <mjbecze@gmail.com>",
100 "contributors": [
101 "Alex Beregszaszi <alex@rtfs.hu>"
102 ],
103 "license": "MPL-2.0",
104 "bugs": {
105 "url": "https://github.com/ethereumjs/ethereumjs-vm/issues"
106 },
107 "homepage": "https://github.com/ethereumjs/ethereumjs-vm",
108 "nyc": {
109 "exclude": [
110 "tests"
111 ]
112 },
113 "standard": {
114 "ignore": [
115 "dist/**",
116 "examples/runcode-browserify.js"
117 ]
118 }
119}