forked from aragon/buidler-aragon
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@1hive/hardhat-aragon",
"version": "0.1.4",
"description": "Aragon Hardhat plugin",
"author": "1hive <[email protected]>",
"license": "MIT",
"main": "dist/src/internal/index.js",
"types": "dist/src/internal/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"aragon"
],
"files": [
"dist/src/",
"src/",
"README.md"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && eslint --fix",
"lint": "eslint",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc",
"watch": "tsc -w",
"test:coverage": "nyc --all --reporter=lcov --reporter=text-summary --reporter=html yarn test",
"report-coverage": "codecov"
},
"dependencies": {
"@solidity-parser/parser": "^0.16.1",
"chalk": "^4.1.1",
"execa": "^5.0.0",
"fs-extra": "^8.1.0",
"ipfs-http-client": "^50.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@aragon/abis": "^1.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@types/chai": "^4.2.5",
"@types/fs-extra": "^8.1.0",
"@types/lodash": "^4.14.169",
"@types/mocha": "^5.2.7",
"@types/node": "12.7.5",
"@types/node-fetch": "^2.5.5",
"@types/semver": "^7.1.0",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"bignumber.js": "^9.0.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"ethers": "^5.5.1",
"hardhat": "^2.6.7",
"hardhat-deploy": "^0.9.4",
"kill-port": "^1.6.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "2.0.5",
"sinon": "^9.0.1",
"ts-node": "^8.1.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"ethers": "^5.5.1",
"hardhat": "^2.6.7",
"hardhat-deploy": "^0.9.4"
}
}