Skip to content
This repository was archived by the owner on Jun 29, 2019. It is now read-only.

Commit aa5a94f

Browse files
author
Javier Diaz
committed
chore: 0.1.0-beta.0 build
1 parent 5cef64c commit aa5a94f

File tree

2 files changed

+7071
-0
lines changed

2 files changed

+7071
-0
lines changed

package.json

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"name": "vue-glider",
3+
"version": "0.1.0-beta.0",
4+
"productName": "Vue Glider",
5+
"description": "A Vue wrapper of Glider.js",
6+
"author": {
7+
"name": "Javier Diaz Chamorro",
8+
"email": "hello@coderdiaz.me",
9+
"url": "https://coderdiaz.me"
10+
},
11+
"license": "MIT",
12+
"private": false,
13+
"scripts": {
14+
"build": "bili",
15+
"lint": "eslint -c .eslintrc.js . --ext .js,.vue",
16+
"test:unit": "jest --passWithNoTests",
17+
"prepare": "yarn lint && yarn test:unit && yarn build"
18+
},
19+
"main": "dist/vue-glider.cjs.js",
20+
"module": "dist/vue-glider.esm.js",
21+
"unpkg": "dist/vue-glider.js",
22+
"jsdelivr": "dist/vue-glider.js",
23+
"cdn": "dist/vue-glider.js",
24+
"files": [
25+
"dist"
26+
],
27+
"repository": {
28+
"type": "git",
29+
"url": "git+https://github.com/coderdiaz/vue-glider.git"
30+
},
31+
"bugs": {
32+
"url": "https://github.com/coderdiaz/vue-glider/issues"
33+
},
34+
"keywords": [
35+
"vue",
36+
"pagination",
37+
"vuejs",
38+
"paginate",
39+
"tiny",
40+
"vue-component",
41+
"small",
42+
"vue-carousel",
43+
"vue-slider",
44+
"carousel",
45+
"slider",
46+
"component"
47+
],
48+
"husky": {
49+
"hooks": {
50+
"pre-commit": "yarn lint"
51+
}
52+
},
53+
"dependencies": {
54+
"glider-js": "^1.6.5",
55+
"vue": "^2.6.10"
56+
},
57+
"devDependencies": {
58+
"@vue/test-utils": "^1.0.0-beta.29",
59+
"babel-core": "7.0.0-bridge.0",
60+
"babel-eslint": "^10.0.1",
61+
"babel-jest": "^24.7.1",
62+
"bili": "^4.7.3",
63+
"eslint": "^5.16.0",
64+
"eslint-config-airbnb-base": "^13.1.0",
65+
"eslint-plugin-import": "^2.16.0",
66+
"eslint-plugin-vue": "^5.2.2",
67+
"husky": "^1.3.1",
68+
"jest": "^24.7.1",
69+
"jest-serializer-vue": "^2.0.2",
70+
"jest-transform-stub": "^2.0.0",
71+
"node-sass": "^4.9.0",
72+
"rollup-plugin-vue": "^4.7.2",
73+
"vue-jest": "^3.0.4",
74+
"vue-template-compiler": "^2.6.10"
75+
}
76+
}

0 commit comments

Comments
 (0)