-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@grandlinex/swagger-mate",
"version": "1.0.1",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"types": "dist/cjs/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"description": "GrandLineX Swagger-Mate Project",
"scripts": {
"pre-build": "node ./preBuild.js",
"buildprep": "npm run pre-build && npm run build-mjs && npm run build-cjs && npm run build-fix",
"build-mjs": "tsc",
"build-cjs": "tsc -p tsconfig-cjs.json",
"build-fix": "node ./node_modules/@grandlinex/core/fix.js",
"pack": "npm run buildprep && npm pack",
"start": "node dist/cjs/run.js",
"start-dev": "npm run pre-build && cross-env dev=true ts-node src/run.ts",
"run-dev": "npm run pre-build && cross-env dev=true node --no-warnings=ExperimentalWarning --loader ts-node/esm src/tests/run.ts",
"lint": "eslint src",
"test": "npm run pre-build && cross-env dev=true jest --runInBand ",
"test-coverage": "npm run pre-build && cross-env dev=true jest --runInBand --ci --collectCoverage --coverageDirectory=\"./coverage\" --reporters=default --reporters=jest-junit",
"makeDocs": "typedoc"
},
"bin": {
"swagger-mate": "./dist/cjs/cli.js",
"swagger-mate-esm": "./dist/mjs/cli.js"
},
"dependencies": {
"@grandlinex/core": "1.0.1",
"express": "4.19.2",
"form-data": "4.0.0",
"js-yaml": "4.1.0",
"reflect-metadata": "0.2.2"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/js-yaml": "4.0.9",
"@types/node": "22.0.0",
"@types/node-fetch": "2.6.11",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"axios": "1.7.2",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"html-webpack-plugin": "5.6.0",
"http-server": "14.1.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"node-fetch": "3.3.2",
"prettier": "3.3.3",
"ts-jest": "29.1.5",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typedoc": "0.26.5",
"typescript": "5.5.4"
}
}