-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "ewasm-jsvm",
"version": "0.0.22",
"description": "\"ewasm virtual machine for javascript\"",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "node --experimental-vm-modules --experimental-wasm-bigint node_modules/jest/bin/jest.js",
"test-gas": "DEBUG=vm:*:gas yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loredanacirstea/ewasm-jsvm.git"
},
"keywords": [
"ewasm",
"javascript",
"ethereum"
],
"files": [
"dist/*",
"src/*"
],
"author": "Loredana Cirstea <loredana.cirstea@gmail.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/loredanacirstea/ewasm-jsvm/issues"
},
"homepage": "https://github.com/loredanacirstea/ewasm-jsvm#readme",
"dependencies": {
"@ethereumjs/common": "^2.4.0",
"@ethereumjs/vm": "^5.5.2",
"bn.js": "^5.1.3",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.1.4"
},
"devDependencies": {
"jest": "^26.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}