-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
107 lines (107 loc) · 2.53 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
{
"name": "@chatscope/chat-ui-kit-styles",
"version": "1.4.0",
"description": "SCSS themes for @chatscope/chat-ui-kit-react library",
"license": "MIT",
"homepage": "https://chatscope.io/",
"keywords": [
"chat",
"styles",
"css",
"scss",
"ui",
"user interface",
"components",
"ui kit",
"communication",
"conversation",
"toolkit",
"library",
"skin",
"theme",
"frontend",
"reusable",
"responsive"
],
"repository": {
"type": "git",
"url": "https://github.com/chatscope/chat-ui-kit-styles.git"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.1.1",
"autoprefixer": "9.8.6",
"chokidar-cli": "3.0.0",
"husky": "4.3.0",
"npm-run-all": "4.1.5",
"postcss-cli": "7.1.2",
"sass": "1.39.2",
"semantic-release": "17.2.4"
},
"scripts": {
"build:clean": "rm -Rf dist",
"build:autoprefixer": "postcss dist/**/*.css -r -m --no-map --use autoprefixer",
"build:sass": "node ./scripts/build-all",
"build": "npm-run-all -s build:clean build:sass build:autoprefixer",
"pack": "yarn pack",
"watch": "chokidar 'themes/**/*.scss' -c 'npm-run-all -s build:sass build:autoprefixer'"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"dist",
"scripts",
"themes"
],
"publishConfig": {
"access": "public"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"scope": "readme",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# @chatscope/chat-ui-kit-styles changelog"
}
],
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}