-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 982 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 982 Bytes
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
{
"name": "openapi-generator",
"version": "1.0.0",
"description": "",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js",
"clean": "rm -rf lib dist",
"add": "git add .",
"commit": "git commit -m \"update\"",
"push": "git push",
"git": "npm run add && npm run commit && npm run push",
"update": "npm run clean; npm run build; npm run git;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobicrain/openapi-generator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tobicrain/openapi-generator/issues"
},
"homepage": "https://github.com/tobicrain/openapi-generator#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@vercel/ncc": "^0.34.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}