forked from ionic-team/angular-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@ionic/angular-toolkit",
"version": "2.1.2",
"description": "Schematics and builders for @ionic/angular apps.",
"homepage": "https://ionicframework.com/",
"author": "Ionic Team <hi@ionicframework.com> (https://ionicframework.com)",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/angular-toolkit.git"
},
"bugs": {
"url": "https://github.com/ionic-team/angular-toolkit/issues"
},
"keywords": [
"angular",
"Angular CLI",
"blueprints",
"code generation",
"devkit",
"schematics",
"ionic",
"ionic framework",
"ionicframework"
],
"dependencies": {
"@schematics/angular": "^8.0.0",
"cheerio": "1.0.0-rc.3",
"colorette": "1.1.0",
"copy-webpack-plugin": "5.1.1",
"tslib": "^1.9.0",
"ws": "^7.0.1"
},
"devDependencies": {
"@angular-devkit/architect": ">=0.800.0",
"@angular-devkit/build-angular": ">=0.800.0",
"@angular-devkit/core": ">=8.0.0",
"@angular-devkit/schematics": ">=8.0.0",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"@semantic-release/github": "^5.0.6",
"@semantic-release/npm": "^5.0.4",
"@types/cheerio": "0.22.15",
"@types/copy-webpack-plugin": "5.0.0",
"@types/karma": "3.0.5",
"@types/node": "^8.10.34",
"@types/webpack": "^4.4.14",
"@types/webpack-dev-server": "^3.1.1",
"@types/ws": "^7.2.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.0.10",
"karma": "4.4.1",
"lint-staged": "^10.0.4",
"rimraf": "^3.0.1",
"semantic-release": "^15.9.17",
"tslint": "^5.12.0",
"tslint-ionic-rules": "0.0.21",
"typescript": "~3.5.3",
"typescript-tslint-plugin": "0.5.5"
},
"peerDependencies": {
"@angular-devkit/architect": ">=0.800.0",
"@angular-devkit/build-angular": ">=0.800.0",
"@angular-devkit/core": ">=8.0.0",
"@angular-devkit/schematics": ">=8.0.0"
},
"builders": "./builders.json",
"schematics": "./collection.json",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release": {
"branch": "stable",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}