forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.24 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
{
"name": "@eth-optimism/core-utils",
"version": "0.4.2",
"main": "dist/index",
"files": [
"dist/*"
],
"types": "dist/index",
"repository": "git@github.com:ethereum-optimism/core-utils.git",
"author": "Kelvin Fichter <kelvinfichter@gmail.com>",
"license": "MIT",
"scripts": {
"all": "yarn clean && yarn build && yarn test && yarn lint:fix && yarn lint",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write '{src,test}/**/*.ts'",
"lint:check": "tslint --format stylish --project .",
"test": "ts-mocha test/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/prettier": "^2.2.3",
"chai": "^4.3.0",
"mocha": "^8.3.0",
"prettier": "^2.2.1",
"ts-mocha": "^8.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-no-focused-test": "^0.5.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.0.9",
"ethers": "^5.0.31",
"lodash": "^4.17.21"
}
}