forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@eth-optimism/rollup-dev-tools",
"version": "0.0.1-alpha.27",
"description": "[Optimism] Optimistic Rollup Dev Tools Library",
"main": "build/index.js",
"files": [
"build/**/*.js"
],
"scripts": {
"all": "yarn clean && yarn build && yarn test && yarn fix && yarn lint",
"build": "yarn build-contracts && tsc -p .",
"clean": "rimraf build/ && yarn clean-contracts",
"fix": "prettier --config ../../prettier-config.json --write 'index.ts' '{src,test}/**/*.ts'",
"lint": "tslint --format stylish --project .",
"clean-contracts": "rimraf ./test/contracts/build && mkdir ./test/contracts/build",
"build-contracts": "yarn clean-contracts && waffle waffle-config.json",
"test": "mocha --require ts-node/register 'test/**/*.spec.ts' --timeout 5000 --exit",
"transpile": "node ./build/src/transpiler/exec/transpiler.js "
},
"keywords": [
"optimism",
"optimistic",
"rollup",
"ethereum",
"client"
],
"homepage": "https://github.com/ethereum-optimism/optimism-monorepo/tree/master/packages/rollup-dev-tools#readme",
"bugs": "https://github.com/ethereum-optimism/optimism-monorepo/labels/%40eth-optimism%2Frollup-dev-tools",
"license": "MIT",
"author": "Optimism",
"repository": {
"type": "git",
"url": "https://github.com/ethereum-optimism/optimism-monorepo.git"
},
"dependencies": {
"@eth-optimism/core-utils": "^0.0.1-alpha.26",
"@eth-optimism/rollup-core": "^0.0.1-alpha.27",
"async-lock": "^1.2.2",
"bn.js": "^5.1.1",
"dotenv": "^8.2.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-vm": "^4.1.3",
"ethers": "^4.0.42"
},
"devDependencies": {
"@types/abstract-leveldown": "^5.0.1",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ethereum-waffle": "2.1.0",
"mocha": "^6.1.4",
"rimraf": "^2.6.3",
"ts-node": "^8.2.0",
"typescript": "^3.5.1"
},
"publishConfig": {
"access": "public"
},
"gitHead": "ccce366645fca6bad46c5cf7f7ff2f407c6ba5fd"
}