-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "vue-plain-slider",
"version": "1.1.1",
"author": "SongYazhao <[email protected]>",
"license": "MIT",
"description": "A simple slider component for Vue.js",
"main": "index.js",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/songyazhao/vue-plain-slider.git"
},
"scripts": {
"dev": "vue-cli-service serve",
"build:dev": "vue-cli-service build",
"build": "vue-cli-service build --target lib src/components/Slider/index.vue",
"lint": "vue-cli-service lint"
},
"keywords": [
"vue",
"vuejs",
"slider",
"swiper",
"components",
"carousel"
],
"bugs": {
"url": "https://github.com/songyazhao/vue-plain-slider/issues"
},
"homepage": "https://github.com/songyazhao/vue-plain-slider#readme",
"dependencies": {
"vue": "^2.5.20",
"vue-router": "^3.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.1",
"@vue/cli-service": "^3.2.0",
"@vue/eslint-config-standard": "^4.0.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"vue-template-compiler": "^2.5.20"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}