This repository has been archived by the owner on Dec 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "@counterfactual/cf-funding-protocol-contracts",
"version": "0.0.13",
"description": "Smart contracts for the Counterfactual multisig funding protocol",
"license": "MIT",
"engines": {
"yarn": ">=1.17.3",
"node": "^10 || ^12"
},
"files": [
"build",
"contracts",
"networks",
"expected-build-artifacts"
],
"scripts": {
"build": "waffle waffle.js && cp build/*.json expected-build-artifacts",
"ensure-build-artifacts-match-solidity-code": "waffle waffle.js && diff build expected-build-artifacts",
"migrate": "truffle migrate",
"test": "ts-mocha test/*",
"lint:fix": "yarn lint:ts:fix && yarn lint:sol:fix",
"lint": "yarn lint:ts && yarn lint:sol",
"lint:sol:fix": "yarn lint:sol --fix",
"lint:sol": "solium -d .",
"lint:ts:fix": "yarn lint:ts --fix",
"lint:ts": "tslint -c tslint.json test/**/*.ts"
},
"keywords": [
"ethereum",
"counterfactual",
"state channels",
"solidity"
],
"devDependencies": {
"@counterfactual/cf-adjudicator-contracts": "0.0.10",
"@counterfactual/types": "0.0.45",
"@counterfactual/typescript-typings": "0.1.3",
"@types/node": "12.11.7",
"@types/chai": "4.2.4",
"chai": "4.2.0",
"dotenv": "8.2.0",
"eth-gas-reporter": "0.2.12",
"ethereum-waffle": "2.1.0",
"ethers": "4.0.38",
"ethlint": "1.2.5",
"ganache-cli": "6.7.0",
"openzeppelin-solidity": "2.3.0",
"shx": "0.3.2",
"solc": "0.5.12",
"truffle": "5.0.42",
"truffle-deploy-registry": "0.5.1",
"truffle-hdwallet-provider": "1.0.17",
"ts-mocha": "6.0.0",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"zos-lib": "2.4.2"
},
"resolutions": {
"ethereum-waffle/solc": "0.5.12"
}
}