-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "@eth-optimism/ERC20-Example",
"version": "0.0.1-alpha.1",
"description": "Basic example of how to test a basic token contract with Waffle in the OVM",
"scripts": {
"clean": "rimraf build",
"build:evm": "mkdir -p build && waffle waffle-config.json",
"test:evm": "yarn build:evm && MODE=EVM mocha 'test/*.spec.js' --timeout 10000",
"all:evm": "yarn clean && yarn test:evm",
"build:ovm": "mkdir -p build && DEBUG=info*,error*,warn* waffle waffle-ovm-config.json",
"test:ovm": "yarn build:ovm && MODE=OVM DEBUG=info*,warn* mocha 'test/*.spec.js' --timeout 50000",
"all:ovm": "yarn clean && yarn test:ovm"
},
"keywords": [
"optimism",
"rollup",
"optimistic",
"ethereum",
"virtual",
"machine",
"OVM",
"ERC20",
"waffle"
],
"homepage": "https://github.com/ethereum-optimism/ERC20-Example#readme",
"license": "MIT",
"author": "Optimism PBC",
"repository": {
"type": "git",
"url": "https://github.com/ethereum-optimism/ERC20-Example.git"
},
"devDependencies": {
"@eth-optimism/ovm-toolchain": "^0.0.1-alpha.14",
"@eth-optimism/solc": "^0.5.16-alpha.6",
"ethereum-waffle": "2.5.0",
"solc": "0.5.16",
"mocha": "^7.0.1",
"rimraf": "^2.6.3"
},
"publishConfig": {
"access": "public"
}
}