forked from energicryptocurrency/go-energi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfutoin.json
69 lines (69 loc) · 1.42 KB
/
futoin.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
68
69
{
"name": "energi3",
"version": "0.9.6",
"vcs": "git",
"plugins": {
"release": "futoin.cid.misc.releasetool"
},
"toolTune": {
"release": {
"changelog": [],
"go": [
"params/version.go"
]
}
},
"tools": {
"aws": true,
"go": "1.13.8",
"make": true,
"node": "10",
"release": true,
"yarn": true
},
"package": [
"bin"
],
"actions": {
"clean": "cte git clean -ffdx -e .vagrant/ . || true",
"build": [
"@cte make all"
],
"check": [
"lint",
"test"
],
"lint": [
"lint-go",
"lint-sol"
],
"lint-go": "@cte make lint",
"lint-sol": "@cte yarn run solium -d energi/contracts/",
"test": [
"test-go",
"test-sol"
],
"test-go": [
"@cte git submodule update --init --recursive",
"@cte make test"
],
"test-sol": [
"@cte yarn run eslint energi/contracts/",
"@cte make test-sol"
],
"package": [
"@cte make package"
],
"autoformat": "@cid tool envexec go -- gofmt -s -w",
"update-license": "@cte go run ./build/update-license.go",
"cigo": "./build/env.sh go run ./build/ci.go",
"ganache": "cid tool envexec npm -- ganache-cli",
"truffle": "cid tool envexec npm -- truffle",
"validate-contracts": [
"@cte make prebuild",
"lint-sol",
"test-sol"
],
"make_release": "@cte make -f Makefile.release -j1"
}
}