-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 KB
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
{
"name": "openapi-typescript-angular-generator",
"version": "4.2.9",
"description": "Code generator to generate angular-specific typescript (model/service/validator) from an openapi-specification.",
"repository": {
"type": "git",
"url": "https://github.com/T-Systems-MMS/openapi-typescript-angular-generator.git"
},
"scripts": {
"build": "rollup -c",
"test": "jest --config jest.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"files": [
"dist",
"src/mustache",
"bin"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"bin": "bin/ng-ts-codegen.js",
"dependencies": {
"fs-extra": "^7.0.1",
"yargs": "^12.0.5"
},
"keywords": [
"openapi",
"typescript",
"angular"
],
"contributors": [
"André Jähnig",
"Stefan Schubert",
"Alen Abelium"
],
"license": "Apache-2.0",
"peerDependencies": {
"@angular/forms": ">=7.0.0 <8.0.0"
},
"devDependencies": {
"@angular/common": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@types/jest": "^23.3.14",
"jest": "^23.6.0",
"rollup": "^1.1.2",
"rollup-plugin-typescript2": "^0.19.2",
"rxjs": "~6.3.3",
"ts-jest": "^23.10.5",
"typescript": "^3.3.3",
"zone.js": "^0.8.26"
}
}