forked from telerik/kendo-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
{
"devDependencies": {
"@semantic-release/npm": "^2.6.0",
"@telerik/kendo-common-tasks": "^3.0.0",
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"jquery": "^3.3.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-qunit": "^1.2.1",
"lerna": "^2.4.0",
"pastshots": "^1.2.0",
"qunitjs": "^2.4.1",
"semantic-release": "^12.4.1",
"semantic-release-monorepo": "^4.2.1",
"validate-commit-msg": "^1.1.1"
},
"scripts": {
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test && npm run karma-single && npm run visual-test",
"visual-test": "./build/visual-test.sh",
"watch-test": "npm run karma-watch",
"karma-watch": "karma start --auto-watch --no-single-run",
"karma-single": "karma start --no-auto-watch --single-run --browsers ChromeHeadless"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint",
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100
}
}
}