-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 KB
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
{
"name": "goMaker",
"version": "1.0.0",
"description": "A development tool that aids in various aspects of building TrueBlocks by automatically generating help files, API interface specs, command line options parsers and test case files",
"main": "main.go",
"scripts": {
"build": "go build -ldflags \"-X 'main.compileTime=$(date -u '+%Y-%m-%d %H:%M:%S UTC')' \" -o /usr/local/bin/goMaker .",
"deploy": "yarn build && echo '✅ Installed to /usr/local/bin/goMaker' && which goMaker",
"lint": "golangci-lint run && markdownlint README.md",
"clean": "rm -f /usr/local/bin/goMaker",
"test": "go test ./..."
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrueBlocks/trueblocks-minidapps.git"
},
"keywords": [
"go",
"trueblocks",
"codegen",
"development-tool",
"code-generation",
"template",
"cli"
],
"author": "TrueBlocks",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/TrueBlocks/trueblocks-minidapps/issues"
},
"homepage": "https://github.com/TrueBlocks/trueblocks-minidapps#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"markdownlint-cli": "^0.45.0"
}
}