-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
39
40
41
42
43
44
{
"name": "@woogychuck/swagger_gen",
"version": "0.1.4",
"description": "Generates OpenAPI yaml files for AWS API Gateway",
"bin": {
"swagger_gen": "./dist/main.js"
},
"scripts": {
"test": "npm run transpile && JASMINE_CONFIG_PATH=jasmine.json jasmine",
"transpile": "babel src --out-dir dist --copy-files",
"clean": "rm -rf dist",
"build": "npm run clean && npm run transpile && chmod +x ./dist/main.js",
"start": "npm run build && node ./dist/main.js",
"prepare": "npm run transpile",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woogychuck/swagger_gen.git"
},
"keywords": [
"CLI",
"OpenAPI",
"API Gateway",
"AWS"
],
"author": "Ian Muir",
"license": "ISC",
"bugs": {
"url": "https://github.com/woogychuck/swagger_gen/issues"
},
"homepage": "https://github.com/woogychuck/swagger_gen#readme",
"dependencies": {
"chalk": "^3.0.0",
"json2yaml": "^1.1.0",
"sywac": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"jasmine": "^3.5.0"
}
}