-
Notifications
You must be signed in to change notification settings - Fork 3
/
gupm.json
34 lines (34 loc) · 1.04 KB
/
gupm.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
{
"cli": {
"aliases": {
"gotest": "go test ./src ./src/utils",
"start": "./build/dg"
}
},
"dependencies": {
"default": {
"go://github.com/Masterminds/semver": "master",
"go://github.com/bmatcuk/doublestar": "master",
"go://github.com/fatih/color": "master",
"go://github.com/gosuri/uilive": "master",
"go://github.com/mattn/go-isatty": "master",
"go://github.com/mitchellh/go-homedir": "master",
"go://github.com/otiai10/copy": "master",
"go://github.com/robertkrimen/otto": "master",
"go://github.com/stretchr/testify": "master",
"go://gopkg.in/sourcemap.v1": "v1.0.5"
},
"defaultProvider": "go"
},
"git": {
"hooks": {
"precommit": "gofmt -w -s src/index.go $StagedFiles(**/*.go)",
"prepush": [
"g test",
"g gotest"
]
}
},
"name": "gupm",
"version": "1.2.1"
}