forked from cyclosproject/ng-openapi-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "ng-openapi-gen",
"version": "0.14.0",
"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/cyclosproject/ng-openapi-gen.git"
},
"private": true,
"bin": {
"ng-openapi-gen": "lib/index.js"
},
"scripts": {
"test": "jasmine-ts 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": {
"@loopback/openapi-v3-types": "^1.2.1",
"@types/argparse": "^1.0.38",
"@types/fs-extra": "^8.1.1",
"@types/jsesc": "^0.4.29",
"@types/json-schema": "^7.0.6",
"@types/lodash": "^4.14.165",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.19.7",
"@types/rimraf": "^2.0.4",
"argparse": "^1.0.10",
"eol": "^0.9.1",
"esm": "^3.2.25",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.6",
"jsesc": "^2.5.2",
"json-schema": "^0.2.5",
"json-schema-ref-parser": "^7.1.4",
"lodash": "^4.17.20",
"mkdirp": "^0.5.5",
"rimraf": "^2.7.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"peerDependencies": {
"@angular/core": ">=7.0.0",
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@types/jasmine": "^3.6.2",
"jasmine": "^3.6.3",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.3.0",
"mem": "^5.1.1",
"ncp": "^2.0.0",
"nodemon": "^2.0.6",
"replace-in-file": "^4.3.1",
"tslint": "^5.20.1",
"typescript-parser": "^2.6.1"
}
}