-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 977 Bytes
/
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
{
"name": "@nkmr-jp/api-to-go",
"version": "2.1.1",
"repository": "[email protected]:nkmr-jp/api-to-go.git",
"author": "nkmr-jp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkmr-jp/api-to-go/issues"
},
"homepage": "https://github.com/nkmr-jp/api-to-go#readme",
"scripts": {
"sync-version": "npm version from-git --no-git-tag-version && git add package.json && git commit -m \":bookmark: [skip ci] v$(cat package.json | jq -r .version)\"",
"fetch": "cd vendor && curl -OL https://raw.githubusercontent.com/mholt/json-to-go/master/json-to-go.js",
"setup": "yarn install && yarn fetch && npm -f link && exec $SHELL -l",
"test": "jest"
},
"description": "Convert REST API's JSON payload to Golang struct.",
"bin": {
"api-to-go": "bin/api-to-go.js"
},
"dependencies": {
"commander": "^9.4.0",
"js-yaml": "^4.1.0",
"node-fetch": "2"
},
"devDependencies": {
"jest": "^28.1.1"
}
}