forked from telerik/kendo-theme-default
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "@telerik/kendo-theme-default",
"description": "SASS resources for the default Kendo UI theme",
"version": "1.0.0",
"keywords": [
"Kendo UI",
"Theme"
],
"scripts": {
"lint": "sass-lint -v -c ./sass-lint.yml",
"build": "node-sass -r styles/ -o dist/ && postcss --config postcss-config.json --replace dist/*.css",
"test": "npm run lint && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "Telerik",
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer": "^6.3.6",
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"node-sass": "^3.4.2",
"postcss": "^5.0.21",
"postcss-class-prefix": "^0.3.0",
"postcss-cli": "^2.5.2",
"sass-lint": "^1.7.0",
"semantic-release": "^4.3.5",
"validate-commit-msg": "^1.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test",
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100
}
},
"repository": {
"type": "git",
"url": "https://github.com/telerik/kendo-theme-default.git"
}
}