forked from MetisProtocol/mvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 896 Bytes
/
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
{
"name": "@metis.io/hardhat-mvm",
"version": "0.2.5",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/*"
],
"author": "Metis.io ORG",
"license": "MIT",
"scripts": {
"clean": "rimraf tsconfig.build.tsbuildinfo dist",
"build": "tsc -p tsconfig.build.json",
"lint": "yarn run lint:fix && yarn run lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"{src,test}/**/*.ts\"",
"lint:check": "tslint --format stylish --project ."
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"peerDependencies": {
"ethers": "^5.1.4",
"hardhat": "^2.2.1"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node-fetch": "^2.5.10",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-no-focused-test": "^0.5.0",
"tslint-plugin-prettier": "^2.3.0"
}
}