-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "openapi-automate",
"version": "1.0.0",
"description": "Automate Open API-first design with code generation, stubs, validation, server agnostic with framework plugins",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf build",
"build": "tsc --build",
"build:check": "node -e \"require('./dist')\"",
"prepublishOnly": "npm test && npm run build && npm run coveralls && npm run build && npm run build:check",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"keywords": [
"openapi",
"openapi 3.0",
"backend",
"api first",
"swagger 2.0",
"open api",
"scaffolding",
"schema",
"middleware",
"generator"
],
"homepage": "https://github.com/m-adilshaikh/openapi-automate",
"bugs": {
"url": "https://github.com/m-adilshaikh/openapi-automate/issues"
},
"license": "ISC",
"author": "Adil Shaikh <[email protected]> (http://www.adils.me)",
"repository": {
"type": "git",
"url": "[email protected]:m-adilshaikh/openapi-automate.git"
},
"bin": {
"oapimate": "dist/cli.js"
},
"dependencies": {
"commander": "^8.0.0",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"coveralls": "^3.1.1",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
}
}