forked from ethereum-optimism/batch-submitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 KB
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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@eth-optimism/batch-submitter",
"version": "0.1.2",
"description": "[Optimism] Batch submission for sequencer & aggregators",
"main": "build/index.js",
"files": [
"build/**/*.js"
],
"scripts": {
"start": "node ./exec/run-batch-submitter.js",
"build": "tsc -p .",
"clean": "rimraf build/",
"lint": "tslint --format stylish --project .",
"test": "buidler test --show-stack-traces"
},
"keywords": [
"optimism",
"ethereum",
"sequencer",
"aggregator"
],
"homepage": "https://github.com/ethereum-optimism/optimism-monorepo/tree/master/packages/batch-submitter#readme",
"license": "MIT",
"author": "Optimism",
"repository": {
"type": "git",
"url": "https://github.com/ethereum-optimism/optimism-monorepo.git"
},
"dependencies": {
"@eth-optimism/contracts": "^0.0.2-alpha.7",
"@eth-optimism/core-utils": "^0.1.6",
"@eth-optimism/provider": "^0.0.1-alpha.13",
"@eth-optimism/ynatm": "^0.2.2",
"@ethersproject/abstract-provider": "^5.0.5",
"@ethersproject/providers": "^5.0.14",
"@nomiclabs/buidler": "^1.4.4",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-waffle": "^2.0.0",
"bluebird": "^3.7.2",
"dotenv": "^8.2.0",
"ethers": "5.0.0",
"new-contracts": "npm:@eth-optimism/contracts@0.1.4"
},
"devDependencies": {
"@eth-optimism/dev": "^1.0.0",
"@eth-optimism/smock": "^0.0.2",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.3",
"@types/sinon": "^9.0.10",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ethereum-waffle": "3.0.0",
"ganache-core": "^2.13.2",
"mocha": "^6.1.4",
"prettier": "^1.16.4",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"ts-node": "^8.2.0",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-no-focused-test": "^0.5.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.1",
"rimraf": "^2.6.3"
},
"resolutions": {
"ganache-core": "^2.13.2"
},
"publishConfig": {
"access": "public"
}
}