-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.85 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
{
"name": "@luxbss/gengen",
"version": "1.2.8",
"description": "Tool for generating models and Angular services based on OpenAPIs and Swagger's JSON",
"bin": {
"gengen": "./bin/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"g:i": "node ./bin/index.js init",
"g:c": "node ./bin/index.js g:c --file=./swagger.json",
"g:selected": "node ./bin/index.js g --file=./swagger.json --output=./.output/selected",
"g": "node ./bin/index.js g --all --file=./swagger.json --output=./.output/all",
"g:withRequestOptions": "node ./bin/index.js g --all --file=./swagger.json --output=./.output/withRequestOptions --withRequestOptions",
"g:alias": "node ./bin/index.js g --file=./swagger.json --aliasName alias --output=./.output/selected",
"e2e": "npm run g && npm run g:withRequestOptions && ts-node ./e2e/e2e.ts",
"g:b": "npm run build && npm run g",
"test": "jest",
"test:w": "jest --watch",
"coverage": "jest --coverage",
"coverage:html": "jest --coverage --coverageReporter=html"
},
"keywords": [
"swagger",
"open-api",
"codegen",
"angular"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "11.1.0",
"ts-morph": "20.0.0",
"ts-node": "10.9.1"
},
"devDependencies": {
"@types/jest": "29.5.6",
"@types/node": "20.8.8",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"jest": "29.7.0",
"prettier": "3.0.3",
"snapshot-diff": "0.10.0",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
}
}