forked from surmon-china/vue-awesome-swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "vue-awesome-swiper",
"description": "Swiper component for Vue",
"version": "4.1.1",
"keywords": [
"vue swiper",
"vue awesome swiper",
"vue carrousel",
"carrousel",
"swiper"
],
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/surmon-china/vue-awesome-swiper"
},
"bugs": "https://github.com/surmon-china/vue-awesome-swiper/issues",
"homepage": "https://github.surmon.me/vue-awesome-swiper",
"author": {
"name": "Surmon",
"url": "https://github.com/surmon-china"
},
"main": "dist/vue-awesome-swiper.js",
"module": "dist/vue-awesome-swiper.esm.js",
"browser": "dist/vue-awesome-swiper.js",
"jsdelivr": "dist/vue-awesome-swiper.js",
"unpkg": "dist/vue-awesome-swiper.js",
"jspm": {
"main": "dist/vue-awesome-swiper.esm.js",
"registry": "npm",
"format": "esm"
},
"files": [
"src",
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"cleanup": "rm -rf ./dist/*",
"build": "npm run cleanup && cross-env NODE_ENV=production abc build",
"lint": "abc lint --ext .ts,.vue src tests",
"test": "abc test",
"test:watch": "abc test --watch -i",
"rebirth": "npm run lint && npm test && npm run build",
"release": ". ./scripts/release.sh"
},
"peerDependencies": {
"swiper": "^5.2.0",
"vue": "2.x"
},
"devDependencies": {
"@surmon-china/abc-factory": "^0.3.3",
"@types/swiper": "^5.2.1",
"cross-env": "^6.0.3",
"swiper": "^5.2.0",
"typescript": "^3.7.5",
"vue": "^2.6.10"
},
"engines": {
"node": ">=8"
}
}