forked from intelligenia/yasag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.97 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
70
71
72
73
74
75
76
{
"name": "yasag",
"version": "2.3.19",
"description": "Yet Another Swagger Angular Generator",
"main": "dist/generate.js",
"types": "dist/generate.d.ts",
"bin": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "ts-node src/index.ts",
"start:debug": "node -r ts-node/register --inspect-brk src/index.ts",
"prebuild": "rm -r dist",
"build": "tsc --outDir dist",
"buildwin": "del dist && tsc --outDir dist",
"postbuild": "",
"preversion": "npm run build",
"postversion": "git status",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/intelligenia/yasag.git"
},
"keywords": [
"swagger",
"api",
"client",
"typescript",
"generate",
"generator",
"angular"
],
"author": "Jose Carlos Calvo Tudela",
"license": "MIT",
"bugs": {
"url": "https://github.com/intelligenia/yasag/issues"
},
"homepage": "https://github.com/intelligenia/yasag#readme",
"dependencies": {
"@angular/compiler-cli": "^6.1.1",
"commander": "^2.20.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"@angular/cli": "^6.0.0-rc.4",
"@angular/common": "^5.2.11",
"@angular/core": "^5.2.11",
"@angular/forms": "^5.2.11",
"@angular/http": "^5.2.11",
"@angular/platform-browser": "^5.2.11",
"@ngrx/effects": "^5.2.0",
"@ngrx/store": "^5.2.0",
"@types/commander": "^2.12.2",
"@types/lodash": "^4.14.130",
"@types/node": "^9.6.48",
"rxjs": "^5.5.12",
"ts-node": "^5.0.1",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "~2.8.3",
"zone.js": "^0.8.29"
},
"peerDependencies": {
"@angular/common": "^5.2.4",
"@angular/core": "^5.2.4",
"@angular/http": "^5.2.4",
"@angular/platform-browser": "^5.2.4",
"@ngrx/effects": "^5.1.0",
"@ngrx/store": "^5.1.0",
"rxjs": "^5.5.0",
"zone.js": "^0.8.18"
}
}