forked from telerik/kendo-ui-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 3.63 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "kendo-ui-core",
"description": "Kendo UI Core package",
"main": "js/kendo.ui.core.js",
"author": "Telerik",
"repository": {
"type": "git",
"url": "https://github.com/telerik/kendo-ui-core.git"
},
"license": "Apache-2.0",
"version": "1.0.0",
"dependencies": {},
"devDependencies": {
"amd-optimize": "0.6.1",
"browser-sync": "~2.9.10",
"colors": "^1.1.2",
"cookiejar": "1.3.0",
"cz-conventional-changelog": "1.2.0",
"faye": "0.8.3",
"faye-websocket": "0.4.4",
"ghooks": "1.3.2",
"glob": "~5.0.15",
"gulp": "3.9.1",
"gulp-cached": "~1.1.0",
"gulp-clean-css": "^2.0.0",
"gulp-clone": "~1.0.0",
"gulp-concat": "^2.6.0",
"gulp-debug": "~2.1.1",
"gulp-filter": "~3.0.1",
"gulp-foreach": "^0.1.0",
"gulp-if": "^2.0.0",
"gulp-ignore": "^1.2.1",
"gulp-insert": "^0.5.0",
"gulp-jshint": "^1.11.2",
"gulp-less": "~3.0.3",
"gulp-logger": "~0.0.2",
"gulp-plumber": "~1.0.1",
"gulp-progeny": "~0.1.2",
"gulp-rename": "~1.2.2",
"gulp-replace": "~0.5.4",
"gulp-shell": "^0.5.1",
"gulp-sourcemaps": "^2.4.0",
"gulp-subset-process": "0.1.0",
"gulp-task-listing": "^1.0.1",
"gulp-uglify": "^1.4.2",
"gulp-util": "~3.0.7",
"gulp-zip": "^3.2.0",
"is-absolute": "^0.1.7",
"jshint": "2.8.0",
"jshint-stylish": "~2.0.1",
"karma": "0.13.19",
"karma-chrome-launcher": "~0.2",
"karma-firefox-launcher": "~0.1",
"karma-html2js-preprocessor": "~0.1",
"karma-junit-reporter": "0.2.2",
"karma-qunit": "0.1.4",
"lazypipe": "~1.0.1",
"less": "2.5.3",
"less-plugin-autoprefix": "~1.5.1",
"merge2": "~0.3.6",
"optimist": "0.3.7",
"qunitjs": "1.19.0",
"require-dir": "~0.3.0",
"run-sequence": "~1.1.4",
"through-gulp": "^0.3.8",
"through2": "^2.0.0",
"typescript": "^1.5.3",
"validate-commit-msg": "2.8.2",
"vinyl": "^1.0.0",
"vinyl-named": "^1.1.0",
"webpack": "^1.13.0",
"webpack-stream": "^3.2.0",
"xmlbuilder": "0.4.2",
"yargs": "~3.27.0"
},
"scripts": {
"build": "npm install && ./node_modules/.bin/gulp build",
"test": "./node_modules/.bin/gulp travis --scripts kendo.ui.core.js --styles '{web/kendo.common.core.less,mobile/kendo.mobile.all.less,web/kendo.rtl.less}' --skip-cultures --skip-source-maps"
},
"jshintConfig": {
"es3": true,
"freeze": true,
"curly": true,
"undef": true,
"unused": true,
"latedef": true,
"noarg": true,
"nonbsp": true,
"browser": true,
"jquery": true,
"nonew": true,
"globals": {
"JSON": true,
"QUnit": true,
"Promise": true,
"Symbol": true,
"test": true,
"asyncTest": true,
"module": true,
"start": true,
"equal": true,
"deepEqual": true,
"ok": true,
"stubMethod": true,
"arrayClose": true,
"contains": true,
"strictEqual": true,
"kendo": true,
"define": true,
"angular": true,
"compareMatrices": true,
"compareBoundingBox": true,
"baseSurfaceTests": true,
"baseSurfaceEventTests": true
}
},
"jshintFiles": [
"src/kendo*.js",
"src/messages/kendo*.js",
"tests/**/test-helper.js"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100
}
}
}