-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.13 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
{
"name": "rama-slider",
"version": "1.4.4",
"description": "A collection of slideshows with different animations for complex layouts",
"main": "dist/index.js",
"scripts": {
"start:server": "webpack-dev-server",
"webpack:dev": "webpack -w",
"start": "run-p webpack:dev start:server lint:watch",
"clean:build": "rimraf ./build",
"clean:dist": "rimraf ./dist",
"prod:env": "cross-env NODE_ENV=production",
"prebuild": "npm-run-all clean:dist",
"build": "cross-env NODE_ENV=production webpack",
"clear": "run-p clean:build clean:dist",
"lint": "esw src/**/*.ts --color --ext .ts --changed",
"lint:watch": "npm run lint -- --watch --clear",
"release": "semantic-release",
"commit": "cz"
},
"keywords": [
"slider",
"slideshow",
"carousel"
],
"author": "Mohammed Ramadan <mohammed.ramadanko@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.4",
"@babel/preset-typescript": "7.10.4",
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"clean-webpack-plugin": "3.0.0",
"commitizen": "4.2.1",
"copy-webpack-plugin": "6.1.0",
"cross-env": "7.0.2",
"css-loader": "4.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.7.0",
"eslint-watch": "7.0.0",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-partials-plugin": "0.6.0",
"html-webpack-plugin": "4.3.0",
"husky": "4.2.5",
"lint-staged": "10.3.0",
"mini-css-extract-plugin": "0.11.0",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"sass-loader": "10.0.1",
"semantic-release": "17.4.0",
"style-loader": "1.2.1",
"ts-loader": "8.0.3",
"typescript": "4.0.2",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"dom-to-image": "2.6.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Ramadanko/rama-slider.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*{js.ts}": "eslint --color"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"branches": "master",
"debug": "true",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}