-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "evm-js-emulator",
"version": "0.3.8",
"description": "A simple in-memory EVM JS emulator for testing smart contracts",
"repository": "https://github.com/oguimbal/evm-js-emulator",
"licence": "MIT",
"main": "src/index.js",
"scripts": {
"build": "rm -rf dist && tsc && cp package.json dist/package.json && cp README.md dist/README.md",
"release": "yarn build && cd dist && npm publish",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"author": "Olivier Guimbal",
"dependencies": {
"buffer": "^6.0.3",
"dotenv": "^16.0.2",
"ethereum-cryptography": "^2.1.3",
"immutable": "^4.1.0",
"keccak256": "^1.0.6",
"node-fetch": "2.6.6",
"seedrandom": "^3.0.5"
},
"peerDependencies": {
"ethers": "^5.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node-fetch": "^2.6.2",
"@types/seedrandom": "^3.0.2",
"chai": "^4.3.6",
"ethers": "^5.7.0",
"mocha": "^10.0.0",
"solc": "^0.8.19",
"solc-js": "^1.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}