-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
67 lines (67 loc) · 2.53 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
{
"name": "@fairmint/c-org-contracts",
"version": "2.4.24",
"description": "Smart-contracts for continuous organizations.",
"scripts": {
"build": "npm run compile",
"compile": "truffle compile",
"ganache": "ganache-cli -e 1000000000000 -a 100",
"dev": "npm run compile && npm run test",
"lint": "eslint . --fix && solium -d contracts/ --fix",
"lintNoFix": "eslint . && solium -d contracts/",
"deploy": "truffle test scripts/deploy.js",
"test": "truffle test",
"coverage": "truffle run coverage && cat coverage/lcov.info | coveralls",
"flatten": "(truffle-flattener contracts/DecentralizedAutonomousTrust.sol > build/DecentralizedAutonomousTrust-Flattened.sol) && (truffle-flattener contracts/Whitelist.sol > build/Whitelist-Flattened.sol) && (truffle-flattener node_modules/@openzeppelin/upgrades/contracts/upgradeability/ProxyAdmin.sol > build/ProxyAdmin-Flattened.sol) && (truffle-flattener node_modules/@openzeppelin/upgrades/contracts/upgradeability/AdminUpgradeabilityProxy.sol > build/AdminUpgradeabilityProxy-Flattened.sol) && (echo Wrote flattened files: build/*-Flattened.sol)",
"csvTests": "truffle test csvTests/csvTests.js"
},
"files": [
"build",
"contracts",
"test/behaviors",
"test/helpers"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Fairmint/c-org.git"
},
"author": "Fairmint",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fairmint/c-org/issues"
},
"homepage": "https://github.com/Fairmint/c-org",
"dependencies": {
"@openzeppelin/contracts": "2.5.1",
"@openzeppelin/contracts-ethereum-package": "2.5.0",
"@openzeppelin/test-helpers": "0.5.6",
"@openzeppelin/upgrades": "2.8.0",
"bignumber.js": "9.0.1",
"ethereum-waffle": "2.5.1",
"ethereumjs-util": "7.0.6",
"hardlydifficult-eth": "1.1.3",
"hardlydifficult-ethereum-contracts": "0.11.1",
"papaparse": "5.3.0",
"truffle-assertions": "0.9.2",
"truffle-flattener": "1.5.0",
"truffle-hdwallet-provider": "1.0.17",
"web3": "1.3.0"
},
"devDependencies": {
"@codechecks/client": "0.1.10",
"chai": "4.2.0",
"coveralls": "3.1.0",
"eslint": "7.11.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.14.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"eth-gas-reporter": "0.2.17",
"ethlint": "1.2.5",
"ganache-cli": "6.12.0",
"mocha-lcov-reporter": "1.3.0",
"prettier": "2.1.2",
"solidity-coverage": "0.7.11",
"truffle": "5.1.48"
}
}