This repository has been archived by the owner on Apr 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 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
{
"name": "@telerik/kendo-react-dropdowns",
"version": "0.1.1",
"description": "Kendo UI React Dropdowns package",
"repository": {
"type": "git",
"url": "https://github.com/telerik/kendo-react-dropdowns.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-dropdowns-common": "^0.1.0",
"@telerik/kendo-react-buttons": "^0.1.0",
"@telerik/kendo-react-popup": "^0.1.0",
"classnames": "^2.1.5",
"keycode": "^2.1.1"
},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-addons-update": "^15.0.1"
},
"devDependencies": {
"@telerik/eslint-config": "1.1.0",
"@telerik/kendo-react-tasks": "^1.7.0",
"@telerik/kendo-theme-default": "^1.9.0",
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"gulp": "3.9.0",
"redux-devtools": "^3.2.0",
"semantic-release": "^4.3.5",
"validate-commit-msg": "^1.1.1"
},
"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
}
}
}