-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
package.json
108 lines (108 loc) · 3.1 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
{
"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",
"devDependencies": {
"@progress/kendo-svg-icons": "4.0.0",
"@progress/kendo-theme-bootstrap": "10.0.1",
"@progress/kendo-theme-classic": "10.0.1",
"@progress/kendo-theme-core": "10.0.1",
"@progress/kendo-theme-default": "10.0.1",
"@progress/kendo-theme-fluent": "10.0.1",
"@progress/kendo-theme-material": "10.0.1",
"@progress/kendo-theme-utils": "10.0.1",
"@progress/wct-a11y-spec": "^2.0.9",
"acorn": "^8.8.0",
"axe-core": "^4.4.2",
"chai": "^4.3.9",
"colors": "1.4.0",
"cz-conventional-changelog": "1.2.0",
"eslint": "^7.11.0",
"ghooks": "1.3.2",
"glob": "~5.0.15",
"gulp": "^4.0.2",
"gulp-clone": "^2.0.1",
"gulp-filter": "^7.0.0",
"gulp-flatmap": "^1.0.2",
"gulp-if": "^2.0.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "~0.5.4",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-task-listing": "^1.1.0",
"gulp-terser": "^2.1.0",
"karma": "^6.3.16",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-html2js-preprocessor": "^1.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "0.0.33",
"merge2": "~0.3.6",
"mocha": "^10.0.0",
"require-dir": "~0.3.0",
"rollup": "^2.75.6",
"rollup-plugin-polyfill": "^4.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-virtual": "^2.1.0",
"@rollup/stream": "^2.0.0",
"typescript": "2.3.4",
"validate-commit-msg": "^2.14.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "~3.27.0"
},
"overrides": {
"chokidar": "^3.0.0",
"braces": "~3.0.3",
"glob-stream": "^8.0.0",
"micromatch": "^4.0.8",
"word-wrap": ">=1.2.4",
"semver": ">=7.5.2",
"semver-regex": ">=3.1.4",
"follow-redirects": ">=1.15.6",
"es5-ext": ">=0.10.63"
},
"scripts": {
"build": "npm ci && npx gulp build",
"test": "npx gulp karma-ci",
"eslint": "npx eslint \"src/**/*.js\"",
"scripts": "npx gulp scripts",
"scripts:dev": "npx rollup -c rollup.dev.config.js",
"scripts:modules": "npx rollup -c rollup.modules.config.js",
"scripts:all": "npm run scripts && npm run scripts:dev && npm run scripts:modules",
"scripts:clean": "rm -rf dist/js && rm -rf dist/mjs && rm -rf dist/dev && rm -rf dist/cjs && rm -rf dist/esm"
},
"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
}
}
}