-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "@mantleio/core-utils",
"version": "0.1.0",
"description": "[Mantle] Core typescript utilities",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/*"
],
"scripts": {
"all": "yarn clean && yarn build && yarn test && yarn lint:fix && yarn lint",
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist/ ./tsconfig.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check",
"lint:check": "eslint . --max-warnings=0",
"lint:fix": "yarn lint:check --fix",
"pre-commit": "lint-staged",
"test": "ts-mocha test/*.spec.ts",
"test:coverage": "nyc ts-mocha test/*.spec.ts && nyc merge .nyc_output coverage.json"
},
"keywords": [
"mantle",
"ethereum",
"core",
"utils"
],
"homepage": "https://github.com/mantlenetworkio/mantle/tree/main/packages/core-utils#readme",
"license": "MIT",
"author": "Mantle",
"repository": {
"type": "git",
"url": "git+https://github.com/mantlenetworkio/mantle.git"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/transactions": "^5.6.2",
"@ethersproject/properties": "^5.6.0",
"@ethersproject/web": "^5.6.1",
"bufio": "^1.0.7",
"chai": "^4.3.4",
"ethers": "^5.6.8"
},
"devDependencies": {
"mocha": "^10.0.0"
},
"bugs": {
"url": "https://github.com/mantlenetworkio/mantle/issues"
},
"directories": {
"test": "test"
}
}