-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
54
55
56
{
"name": "@novice1/api-doc-generator",
"private": false,
"version": "0.2.8",
"description": "Quickly generate API Documentation.",
"main": "lib/index.js",
"homepage": "https://kisiwu.github.io/novice-api-doc-generator/latest/",
"repository": {
"type": "git",
"url": "git+https://github.com/kisiwu/novice-api-doc-generator.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"doc": "typedoc",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' kaukau --require ts-node/register --file test --ext .test.ts",
"testany": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\", \"noImplicitAny\": false}' kaukau --require ts-node/register --file test --ext .test.ts",
"testpostman": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' kaukau --require ts-node/register --file test/postman --ext .test.ts",
"testopenapi": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' kaukau --require ts-node/register --file test/openapi --ext .test.ts"
},
"keywords": [
"openapi",
"postman",
"swagger"
],
"author": "demingongo",
"contributors": [
"sbolingo"
],
"license": "MIT",
"devDependencies": {
"@novice1/routing": "^1.1.7",
"@types/chai": "^4.3.16",
"@types/extend": "^3.0.4",
"@types/jsontoxml": "^1.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^8.57.0",
"kaukau": "^4.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
},
"dependencies": {
"@novice1/logger": "^1.5.0",
"extend": "^3.0.2",
"joi": "^17.13.3",
"jsontoxml": "^1.0.1",
"tslib": "^2.8.1"
}
}