-
Notifications
You must be signed in to change notification settings - Fork 282
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "vue-swipe",
"version": "2.4.0",
"description": "A touch slider for vue.js.",
"main": "dist/vue-swipe.js",
"scripts": {
"dev": "webpack-dev-server --config ./webpack.example.config.js --inline --hot",
"remote-dev": "npm run dev --host",
"build": "webpack -p",
"release": "standard-version & git push --follow-tags eleme master & npm publish",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ElemeFE/vue-swipe.git"
},
"babel": {
"presets": [
"env"
]
},
"files": [
"dist",
"src"
],
"keywords": [
"swipe",
"slider",
"vue"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^4.4.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"style-loader": "^0.20.3",
"vue": "2.5.16",
"vue-loader": "^14.2.2",
"vue-template-compiler": "2.5.16",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"wind-dom": "0.0.3"
}
}