-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1005 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "api-client-generator-bot",
"description": "A package to create GitHub Actions Bot for generating API client code from Swagger definition.",
"version": "1.7.8",
"main": "index.js",
"bin": {
"api-client-generator-bot": "bin/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "npm publish",
"create-api-client-bot": "node ./bin/cli.js add",
"remove-api-client-bot": "node ./bin/cli.js remove"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saitgurdag/api-client-generator-bot.git"
},
"keywords": [
"github-actions",
"swagger",
"workflow",
"api-client",
"react",
"react-native",
"expo"
],
"author": "saitgurdag",
"license": "MIT",
"dependencies": {
"commander": "^10.0.0",
"fs-extra": "^10.1.0",
"path": "^0.12.7",
"yaml": "^2.0.2",
"axios": "^1.2.0"
},
"devDependencies": {
"eslint": "^8.23.1",
"prettier": "^2.7.1"
}
}