forked from ishara/kendo-angular-component-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.66 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
{
"name": "@telerik/kendo-angular-component-base",
"description": "Kendo UI Angular 2 component starter template",
"main": "dist/npm/js/index.js",
"author": "Telerik",
"license": "Apache-2.0",
"scripts": {
"test": "gulp test",
"e2e": "gulp e2e",
"start": "gulp start",
"typings": "typings install",
"lint": "gulp lint",
"build-package": "gulp build-npm-package",
"build-cdn": "gulp build-cdn",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"Kendo UI",
"AngularJS 2"
],
"dependencies": {
"angular2": "^2.0.0-beta.13",
"core-js": "^2.1.5",
"rxjs": "5.0.0-beta.4",
"ts-helper": "0.0.1",
"typings": "^0.6.8",
"zone.js": "^0.6.6"
},
"devDependencies": {
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"gulp": "3.9.0",
"@telerik/kendo-angular-tasks": "^1.0.0",
"@telerik/kendo-theme-default": "telerik/kendo-theme-default#master",
"validate-commit-msg": "^1.1.1",
"semantic-release": "^4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint",
"commit-msg": "validate-commit-msg",
"pre-push": "npm run test"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100
}
},
"repository": {
"type": "git",
"url": "https://github.com/telerik/kendo-angular-component-base.git"
}
}