forked from SSENSE/vue-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.94 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
{
"name": "vue-carousel",
"version": "0.18.3",
"description": "A flexible, responsive, touch-friendly carousel for Vue.js",
"main": "dist/vue-carousel.min.js",
"scripts": {
"build": "webpack --config webpack.prod.js && npm run updateDocAssets",
"coveralls": "cat coverage/client/lcov.info | ./node_modules/.bin/coveralls",
"dev": "vue-play start --standalone",
"dev:build": "vue-play build",
"docs:build": "npm run build && rm -rf ./docs/public && mkdir ./docs/public/ && cd ./docs/public/ && git init && git remote add origin [email protected]:SSENSE/vue-carousel.git && git fetch && git checkout -f gh-pages && cd .. && npm install && ./node_modules/.bin/hexo clean && ./node_modules/.bin/hexo generate",
"lint": "prettier-eslint --write \"src/**/?(*.js|*.vue)\" || exit 1",
"precommit": "lint-staged && npm run test",
"test": "npm run test:client",
"test:client": "jest --config tests/client.jest.json",
"test:client:coverage": "jest --config tests/client.jest.json --coverage",
"test-coverage": "npm run test:client:coverage",
"updateDocAssets": "cp ./dist/vue-carousel.min.js ./docs/themes/vue/source/js/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SSENSE/vue-carousel.git"
},
"keywords": [
"Vue",
"carousel",
"slider",
"responsive"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssense/vue-carousel/issues"
},
"homepage": "https://github.com/ssense/vue-carousel#readme",
"dependencies": {
"global": "^4.4.0",
"regenerator-runtime": "^0.13.7",
"vue": "^2.6.11"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@vue/test-utils": "^1.0.0-beta.26",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.1",
"babel-plugin-istanbul": "^5.1.1",
"coveralls": "^3.0.1",
"css-loader": "^1.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-ssense": "^0.1.0",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-vue": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.12.0",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"jest": "^24.5.0",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^8.1.0",
"prettier": "^1.10.2",
"prettier-eslint": "^8.8.1",
"prettier-eslint-cli": "^4.7.0",
"shelljs": "^0.7.5",
"uglifyjs-webpack-plugin": "^1.3.0",
"vue-jest": "^3.0.4",
"vue-loader": "^15.3.0",
"vue-play": "^3.2.1",
"vue-play-cli": "^1.1.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
}
}