Skip to content

Commit c9f1d4b

Browse files
author
Javier Diaz
committed
build(deps): updated dependencies
1 parent cbd9f31 commit c9f1d4b

File tree

2 files changed

+6011
-0
lines changed

2 files changed

+6011
-0
lines changed

package.json

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"name": "vue-tiny-pagination",
3+
"version": "0.3.2",
4+
"description": "A Vue component for create a tiny pagination with Flexbox",
5+
"license": "MIT",
6+
"private": false,
7+
"plugin": {
8+
"name": "VueTinyPagination",
9+
"entryFile": "./index.js"
10+
},
11+
"author": {
12+
"name": "Javier Diaz Chamorro",
13+
"email": "hello@coderdiaz.me",
14+
"url": "https://github.com/coderdiaz"
15+
},
16+
"scripts": {
17+
"build": "rimraf dist && rollup -c --environment BUILD:production",
18+
"prepare": "yarn lint && yarn test:unit && yarn build",
19+
"lint": "eslint -c .eslintrc.js . --ext .js,.vue",
20+
"test:unit": "jest -c"
21+
},
22+
"style": "dist/vue-tiny-pagination.css",
23+
"main": "dist/vue-tiny-pagination.cjs.js",
24+
"module": "dist/vue-tiny-pagination.esm.js",
25+
"unpkg": "dist/vue-tiny-pagination.js",
26+
"jsdelivr": "dist/vue-tiny-pagination.js",
27+
"cdn": "dist/vue-tiny-pagination.js",
28+
"files": [
29+
"dist"
30+
],
31+
"repository": {
32+
"type": "git",
33+
"url": "git+https://github.com/coderdiaz/vue-tiny-pagination.git"
34+
},
35+
"bugs": {
36+
"url": "https://github.com/coderdiaz/vue-tiny-pagination/issues"
37+
},
38+
"keywords": [
39+
"vue",
40+
"vuejs",
41+
"vue-component",
42+
"component",
43+
"vue.js",
44+
"pagination",
45+
"paginate",
46+
"tiny-paginate",
47+
"tiny",
48+
"small",
49+
"vue-paginate"
50+
],
51+
"devDependencies": {
52+
"@vue/test-utils": "^1.0.0-beta.29",
53+
"babel-core": "^6.26.3",
54+
"babel-eslint": "^10.0.2",
55+
"babel-jest": "^24.8.0",
56+
"babel-preset-env": "^1.7.0",
57+
"eslint": "^6.0.1",
58+
"eslint-config-airbnb-base": "^13.2.0",
59+
"eslint-plugin-import": "^2.18.0",
60+
"eslint-plugin-vue": "^5.2.3",
61+
"jest": "^24.8.0",
62+
"jest-serializer-vue": "^2.0.2",
63+
"jest-transform-stub": "^2.0.0",
64+
"rimraf": "^2.6.3",
65+
"rollup": "^1.16.3",
66+
"rollup-plugin-commonjs": "^10.0.1",
67+
"rollup-plugin-css-only": "^1.0.0",
68+
"rollup-plugin-node-resolve": "^5.2.0",
69+
"rollup-plugin-terser": "^5.0.0",
70+
"rollup-plugin-vue": "^5.0.1",
71+
"vue-jest": "^3.0.4",
72+
"vue-template-compiler": "^2.6.10"
73+
},
74+
"dependencies": {
75+
"vue": "^2.6.10"
76+
}
77+
}

0 commit comments

Comments
 (0)