-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "tribute-contracts-cli",
"version": "0.2.3",
"description": "A command line interface tool to interact with @tributelabs/tribute-contracts",
"type": "commonjs",
"main": "./index.js",
"bin": {
"trib": "lib/index.js"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run compile && npm run link",
"tsc": "tsc",
"compile": "rimraf build/ && mkdir -p build/contracts && cp -r node_modules/tribute-contracts/contracts/** build/contracts && hardhat compile",
"release": "np --no-publish --no-tests",
"lint:fix": "prettier --write '**/*.{js,ts,json}'",
"lint": "prettier --check '**/*.{js,ts,json}'",
"link": "rimraf lib/ && tsc && chmod +x ./lib/index.js && npm link"
},
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openlawteam/tribute-contract-cli.git"
},
"bugs": {
"url": "https://github.com/openlawteam/tribute-contracts-cli/issues"
},
"dependencies": {
"@openlaw/snapshot-js-erc712": "1.3.0",
"chalk": "^4.1.2",
"cjs-loader": "^0.1.0",
"commander": "^8.1.0",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"eth-sig-util": "3.0.1",
"ethereumjs-util": "7.1.0",
"ethers": "5.4.5",
"ethers-gcp-kms-signer": "^1.1.2",
"hardhat": "^2.6.2",
"inquirer": "^8.1.2",
"tribute-contracts": "2.6.0",
"truffle": "5.4.6",
"web3": "1.4.0"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/test-environment": "^0.1.9",
"np": "^7.5.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"prettier": {
"overrides": [
{
"files": [
"{src,test}/**/*.{js,ts,json}"
],
"options": {
"singleQuote": false,
"bracketSpacing": true,
"tabWidth": 2
}
}
]
}
}