-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
69 lines (69 loc) · 2.16 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
{
"name": "ng-openapi-gen",
"version": "0.52.0",
"license": "MIT",
"author": "Cyclos development team",
"description": "An OpenAPI 3 codegen for Angular 12+",
"keywords": [
"angular",
"openapi",
"codegen"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyclosproject/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",
"lint": "eslint 'lib/**'",
"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 lint && npm run compile && npm test",
"test:watch": "nodemon --watch './**/*' --exec 'npm run test'"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "~9.1.2",
"argparse": "^2.0.1",
"eol": "^0.10.0",
"fs-extra": "^10.1.0",
"handlebars": "^4.7.8",
"jsesc": "^3.0.2",
"json-schema": "^0.4.0",
"lodash": "^4.17.21",
"typescript": "~5.1.3"
},
"peerDependencies": {
"@angular/core": ">=12.0.0",
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@loopback/openapi-v3-types": "^1.2.1",
"@types/argparse": "^2.0.16",
"@types/fs-extra": "^9.0.13",
"@types/jasmine": "^3.10.18",
"@types/jsesc": "^3.0.3",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.7",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^46.10.1",
"jasmine": "^3.99.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"mem": "^9.0.2",
"ncp": "^2.0.0",
"nodemon": "^3.1.4",
"replace-in-file": "^7.2.0",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript-parser": "^2.6.1"
}
}