forked from cyclosproject/ng-openapi-gen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.03 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
{
"name": "@fullstax/ng-openapi-gen",
"version": "0.23.0-3",
"license": "MIT",
"author": "Cyclos development team",
"description": "An OpenAPI 3 codegen for Angular 7+",
"keywords": [
"angular",
"openapi",
"codegen"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fllstx/ng-openapi-gen.git"
},
"private": true,
"bin": {
"ng-openapi-gen": "lib/index.js"
},
"main": "lib/ng-openapi-gen.js",
"scripts": {
"test": "jasmine-ts --project=tsconfig.json --config=jasmine.json",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"compile": "tsc --project tsconfig.json && ncp \"LICENSE\" dist && ncp \"README.md\" \"dist/README.md\" && ncp \"templates\" \"dist/templates\" && ncp \"node_modules\" \"dist/node_modules\" && rimraf \"dist/test\" && replace-in-file \"\\\"private\\\": true\" \"\\\"private\\\": false\" dist/package.json",
"build": "npm run tslint && npm run compile && npm test",
"test:watch": "nodemon --watch './**/*' --exec 'npm run test'"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"argparse": "^2.0.1",
"eol": "^0.9.1",
"fs-extra": "^10.0.1",
"handlebars": "^4.7.7",
"jsesc": "^3.0.2",
"json-schema": "^0.4.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"typescript": "^4.5.4"
},
"peerDependencies": {
"@angular/core": ">=12.0.0",
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@loopback/openapi-v3-types": "^1.2.1",
"@types/argparse": "^2.0.10",
"@types/fs-extra": "^9.0.13",
"@types/jasmine": "^3.10.2",
"@types/jsesc": "^3.0.1",
"@types/json-schema": "^7.0.11",
"@types/lodash": "^4.14.184",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.23",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"mem": "^9.0.2",
"ncp": "^2.0.0",
"nodemon": "^2.0.19",
"replace-in-file": "^6.3.5",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tslint": "^5.20.1",
"typescript-parser": "^2.6.1"
}
}