-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
82 lines (82 loc) · 2.25 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
{
"name": "vue-slick",
"version": "1.2.0",
"description": "Vue component for Slick-carousel (http://kenwheeler.github.io/slick)",
"main": "dist/slickCarousel.cjs.js",
"module": "dist/slickCarousel.esm.js",
"source": "src/slickCarousel.vue",
"types": "src/index",
"scripts": {
"build": "npm run build:cjs & npm run build:es & npm run build:umd",
"prepublishOnly": "npm run build",
"build:cjs": "rollup --config rollup.config.js --format cjs -e jquery,slick-carousel --file dist/slickCarousel.cjs.js",
"build:es": "rollup --config rollup.config.js --format es -e jquery,slick-carousel --file dist/slickCarousel.esm.js",
"build:umd": "rollup --config rollup.config.js --format umd -e jquery,slick-carousel --file dist/slickCarousel.umd.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/staskjs/vue-slick.git"
},
"keywords": [
"slick",
"carousel",
"vue"
],
"author": "Stas Karpov",
"license": "ISC",
"bugs": {
"url": "https://github.com/staskjs/vue-slick/issues"
},
"homepage": "https://github.com/staskjs/vue-slick#readme",
"peerDependencies": {
"jquery": "*",
"vue": ">=2"
},
"dependencies": {
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@release-it/conventional-changelog": "^5.1.1",
"@types/jquery": "^3.5.16",
"husky": "^8.0.3",
"jquery": "*",
"release-it": "^15.10.5",
"rollup": "^3.23.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^6.0.0",
"vue-template-compiler": "^2.5.17"
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md",
"header": "# Changelog"
}
}
},
"commitlint": {
"rules": {
"header-max-length": [
2,
"always",
130
]
},
"extends": [
"@commitlint/config-conventional"
]
}
}