-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "@daonuts/token",
"version": "0.0.8",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"files": [
"/abi",
"/contracts",
"/scripts",
"/test"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf build && rm -rf dist",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile",
"build:gopkg": "solc @aragon=$(pwd)/node_modules/@aragon --abi contracts/Token.sol -o build --overwrite && abigen --abi=./build/Token.abi --pkg=token --out=go/Token.go && solc @aragon=$(pwd)/node_modules/@aragon --bin contracts/Token.sol -o build --overwrite && abigen --bin=./build/Token.bin --abi=./build/Token.abi --pkg=token --out=go/Token.go"
},
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"@aragon/apps-shared-minime": "^1.0.2",
"@aragon/cli": "^6.3.3",
"@aragon/os": "^4.3.0"
},
"devDependencies": {
"@aragon/test-helpers": "^2.1.0",
"truffle-extract": "^1.2.1"
}
}