-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
96 lines (96 loc) · 2.92 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@aragon/buidler-aragon",
"version": "0.2.9",
"description": "Aragon Buidler plugin",
"main": "dist/src/index.js",
"author": "Aragon Association <legal@aragon.org>",
"license": "GPL-3.0-or-later",
"keywords": [
"aragon",
"buidler",
"plugin",
"ethereum"
],
"files": [
"typechain",
"dist/src",
"dist/bootstrap-paths.d.ts",
"dist/bootstrap-paths.d.ts.map",
"dist/bootstrap-paths.js",
"dist/bootstrap-paths.js.map",
"dist/tsconfig.json",
"src"
],
"scripts": {
"generate": "typechain --target truffle --outDir typechain './node_modules/@aragon/abis/os/artifacts/*.json'",
"build-projects": "cd test/projects && yarn && yarn build-projects && cd ../..",
"dev": "yarn generate && yarn build && yarn build-projects",
"lint": "eslint 'src/**/*.{js,ts}'",
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"test": "yarn build && mocha --recursive \"test/**/*.ts\" --exit",
"test:coverage": "nyc --all --reporter=lcov --reporter=text-summary --reporter=html yarn test",
"build": "tsc --build .",
"postbuild": "cp ./tsconfig.json ./dist/tsconfig.json",
"report-coverage": "codecov"
},
"dependencies": {
"@solidity-parser/parser": "^0.6.0",
"chalk": "^3.0.0",
"chokidar": "^3.3.1",
"ethers": "^4.0.46",
"ethjs-ens": "^2.0.1",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"ganache-core": "^2.10.1",
"http-proxy": "^1.18.0",
"ipfs-http-client": "^42.0.0",
"live-server": "^1.2.1",
"node-fetch": "^2.6.0",
"open": "^7.0.0",
"source-map-support": "^0.5.16",
"tcp-port-used": "^1.0.1",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@aragon/abis": "^1.1.0",
"@nomiclabs/buidler": "^1.3.0",
"@nomiclabs/buidler-etherscan": "^1.3.0",
"@nomiclabs/buidler-truffle5": "^1.3.0",
"@nomiclabs/buidler-web3": "^1.3.0",
"@types/chai": "^4.2.5",
"@types/fs-extra": "^8.1.0",
"@types/lodash": "^4.14.149",
"@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",
"@types/web3": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"bignumber.js": "^9.0.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": "^4.0.46",
"kill-port": "^1.6.0",
"nyc": "^15.0.1",
"prettier": "^1.19.1",
"sinon": "^9.0.1",
"truffle-typings": "1.0.4",
"ts-node": "^8.5.4",
"typechain": "^1.0.3",
"typechain-target-truffle": "^1.0.2",
"typescript": "^3.7.4",
"web3": "^1.2.0"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.3.0",
"@nomiclabs/buidler-etherscan": "^1.3.0",
"@nomiclabs/buidler-truffle5": "^1.3.0",
"@nomiclabs/buidler-web3": "^1.3.0",
"web3": "^1.2.0"
}
}