This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
53 lines (53 loc) · 2 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
{
"name": "@ablack/fundraising-tap",
"version": "1.0.0",
"author": "Aragon Assocation <[email protected]>",
"contributors": [
"Olivier Sarrouy <[email protected]>",
"Cory Dickson <[email protected]>"
],
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"homepage": "https://github.com/AragonBlack/fundraising",
"scripts": {
"lint": "solium --dir ./contracts --config ../../.soliumrc.json",
"compile": "truffle compile",
"test": "TRUFFLE_TEST=true npm run test:ganache",
"test:gas": "GAS_REPORTER=true npm test",
"test:coverage": "SOLIDITY_COVERAGE=true npm run test:ganache",
"test:ganache": "./node_modules/@aragon/test-helpers/ganache-cli.sh",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"apm:prepublish": "npm run compile",
"apm:publish:rpc:major": "aragon apm publish major --environment default --skip-confirmation true --propagate-content false",
"apm:publish:hatch:major": "aragon apm publish major --environment hatch --use-frame",
"apm:publish:rinkeby:major": "aragon apm publish major --environment rinkeby --use-frame",
"apm:publish:mainnet:major": "aragon apm publish major --environment mainnet --use-frame",
"publish": "npm run apm:publish:rpc:major"
},
"files": [
"/abi",
"/arapp.json",
"/build",
"/contracts",
"/test"
],
"dependencies": {
"@ablack/fundraising-shared-interfaces": "^1.0.0",
"@aragon/apps-vault": "^4.1.0",
"@aragon/os": "4.2.1"
},
"devDependencies": {
"@ablack/fundraising-shared-test-helpers": "^1.0.0",
"@aragon/apps-shared-migrations": "^1.0.0",
"@aragon/cli": "^6.2.5",
"@aragon/test-helpers": "^2.0.0",
"eth-ens-namehash": "^2.0.8",
"eth-gas-reporter": "^0.2.0",
"ethereumjs-testrpc-sc": "^6.5.1-sc.0",
"ganache-cli": "^6.4.3",
"solidity-coverage": "0.6.2",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1"
}
}