This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.8 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
{
"name": "@telerik/kendo-react-dialog",
"description": "Kendo UI React Dialog component",
"version": "0.0.0-semantically-released",
"repository": {
"type": "git",
"url": "https://github.com/telerik/kendo-react-dialog.git"
},
"main": "dist/npm/js/main.js",
"scripts": {
"test": "gulp test",
"e2e": "gulp e2e",
"e2e-npm": "gulp e2e-npm",
"start": "gulp start",
"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",
"React"
],
"dependencies": {
"@telerik/kendo-react-animation": "^0.2.0",
"@telerik/kendo-react-buttons": "^0.1.0",
"@telerik/kendo-theme-default": "^1.1.0",
"classnames": "^2.2.3"
},
"peerDependencies": {
"react": "~15.0.1",
"react-dom": "~15.0.1"
},
"devDependencies": {
"@telerik/eslint-config": "1.1.0",
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"gulp": "3.9.0",
"react": "~15.0.1",
"react-addons-transition-group": "~15.0.1",
"react-dom": "~15.0.1",
"@telerik/kendo-react-tasks": "^1.7.1",
"validate-commit-msg": "^1.1.1",
"semantic-release": "^4.3.5"
},
"author": "Telerik",
"license": "Apache-2.0",
"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
}
}
}