This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "@chainsafe/chainbridge-contracts",
"version": "2.1.4",
"description": "",
"main": "dist/index.js",
"repository": "https://github.com/ChainSafe/chainbridge-solidity.git",
"files": [
"dist",
"build/contracts/Bridge.json",
"build/contracts/ERC20Handler.json",
"build/contracts/ERC721Handler.json",
"build/contracts/GenericHandler.json",
"build/contracts/HandlerHelpers.json"
],
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"build": "rollup -c",
"publish-package": "npm run compile && npm run generate-types && npm run build && npm publish",
"generate-types": "npm run generate-types:ethers",
"generate-types:ethers": "npx typechain \"build/contracts/*\" --target=ethers-v5 --out-dir src/ethers",
"test": "echo \\\\\\\"Error: no test specified\\\\\\\" && exit 1"
},
"author": "Chainsafe Systems",
"license": "GPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.17.4",
"@codechecks/client": "^0.1.12",
"@openzeppelin/contracts": "^4.5.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@typechain/ethers-v5": "^9.0.0",
"commander": "^9.0.0",
"coveralls": "^3.1.1",
"eth-sig-util": "^3.0.1",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.5.4",
"ganache-cli": "^6.9.1",
"lodash.template": "^4.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.2",
"solidity-coverage": "^0.7.20",
"truffle": "^5.4.32",
"truffle-assertions": "^0.9.2",
"typechain": "^7.0.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"ethers": ">= 5.0.0"
}
}