forked from Wlada/vue-carousel-3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.99 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
{
"name": "vue-carousel-3d",
"version": "1.0.1",
"description": "Beautiful, flexible and touch supported 3D Carousel for Vue.js",
"main": "./dist/carousel-3d.common.js",
"sideEffects": true,
"scripts": {
"serve": "vue-cli-service serve",
"build:lib": "vue-cli-service build --target lib --name carousel-3d src/carousel-3d/index.js && npm run build:docs:assets",
"build:docs": "npm run build:lib && rm -rf ./docs/public && mkdir ./docs/public/ && cd ./docs/public/ && git init && git remote add origin [email protected]:wlada/vue-carousel-3d.git && git fetch && git checkout -f gh-pages && cd .. && npm install && ./node_modules/.bin/hexo clean && ./node_modules/.bin/hexo generate",
"build:docs:assets": "cp ./dist/carousel-3d.umd.js ./docs/themes/vue/source/js/",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test-coverage": "vue-cli-service test:unit --coverage",
"test:e2e": "vue-cli-service test:e2e",
"deploy:docs": "cd docs && hexo deploy && cd ..",
"deploy": "git push https://github.com/Wlada/vue-carousel-3d master"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wlada/vue-carousel-3d.git"
},
"keywords": [
"Vue",
"carousel",
"carousel 3d",
"slider"
],
"author": "Vladimir Bujanovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/wlada/vue-carousel-3d/issues"
},
"homepage": "https://github.com/wlada/vue-carousel-3d#readme",
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"html2jade": "^0.8.6",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
}
}