-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "api-docs-creator",
"version": "1.0.0-alpha.2",
"description": "Simple file-based REST API documentation builder with testing",
"main": "lib/index.js",
"bin": {
"api-docs-creator": "bin/cli.js"
},
"files": [
"lib/",
"public/",
"bin/",
"README.md"
],
"scripts": {
"dev": "concurrently \"vite --port 8080\" \"nodemon examples/express/server.js\"",
"start": "node examples/express/server.js",
"demo": "node bin/cli.js demo",
"usage": "node bin/cli.js usage",
"test": "echo 'No tests yet' && exit 0",
"build": "vite build",
"preview": "vite preview"
},
"keywords": [
"api",
"documentation",
"rest",
"express",
"middleware",
"testing",
"swagger",
"docs",
"builder",
"creator"
],
"author": "Farukade",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"commander": "^11.0.0",
"chalk": "^4.1.2",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farukade/api-docs-creator.git"
},
"bugs": {
"url": "https://github.com/farukade/api-docs-creator.git/issues"
},
"homepage": "https://github.com/farukade/api-docs-creator#readme"
}