forked from ChainSafe/chainbridge-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "@chainsafe/chainbridge-contracts",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"repository": "https://github.com/ChainSafe/chainbridge-solidity.git",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"build": "rollup -c",
"publish-package": "npm run generate-types && npm run build && npm publish",
"generate-types": "npm run generate-types:ethers",
"generate-types:ethers": "npx typechain \"build/contracts/Bridge.json\" --target=ethers-v5 --outDir src/ethers",
"test": "echo \\\\\\\"Error: no test specified\\\\\\\" && exit 1"
},
"author": "Chainsafe Systems",
"license": "GPL-3.0-only",
"devDependencies": {
"@codechecks/client": "^0.1.10",
"coveralls": "^3.0.11",
"ethers": "^4.0.40",
"ganache-cli": "^6.9.1",
"solidity-coverage": "^0.7.4",
"truffle-assertions": "^0.9.2",
"typechain": "^3.0.0",
"@typechain/ethers-v5": "^2.0.0",
"@openzeppelin/contracts": "^3.0.0",
"commander": "^7.0.0",
"rimraf": "^3.0.2",
"truffle": "^5.1.15",
"@rollup/plugin-babel": "5.2.3",
"rollup": "2.38.5",
"@babel/core": "^7.12.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.3",
"typescript": "4.1.5"
},
"peerDependencies": {
"ethers": ">= 5.0.0"
}
}