-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "openapi-typescript-angular-generator",
"version": "13.0.0",
"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 && rollup -c rollup-es2015.config.js",
"test": "jest --config jest.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"files": [
"dist",
"src/mustache",
"bin"
],
"es2015": "dist/index.es2015.js",
"main": "dist/index.js",
"module": "dist/index.esm.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",
"Christof Hahn"
],
"license": "Apache-2.0",
"peerDependencies": {
"@angular/forms": ">=13.0.0"
},
"devDependencies": {
"@angular/common": "^13.0.0",
"@angular/core": "^13.0.0",
"@angular/forms": "^13.0.0",
"@angular/platform-browser": "^13.0.0",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"rollup": "^1.17.0",
"rollup-plugin-typescript2": "^0.24.0",
"rxjs": "^6.5.3",
"ts-jest": "^29.1.0",
"typescript": "4.6.4",
"zone.js": "~0.10.3"
}
}