-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
35 lines (35 loc) · 860 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
{
"name": "openapi-autospec",
"version": "1.0.4",
"description": "Automatically generate an OpenAPI spec through your app's dev environment.",
"main": "index.js",
"scripts": {
"test": "node index.js --portTo 3000 --portFrom 3001 --filePath test.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adawg4/openapi-autospec.git"
},
"bin": {
"autospec": "./index.js"
},
"keywords": [
"openapi",
"spec",
"generator",
"development",
"api",
"documentation"
],
"author": "Aidan Pratt and Joel Jaison",
"license": "ISC",
"bugs": {
"url": "https://github.com/Adawg4/openapi-autospec/issues"
},
"homepage": "https://github.com/Adawg4/openapi-autospec#readme",
"dependencies": {
"commander": "^12.0.0",
"har-to-openapi": "^2.0.0",
"http-proxy": "^1.18.1"
}
}