-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.05 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
{
"name": "vue-tiny-pagination",
"version": "0.3.6",
"description": "A Vue component for create a tiny pagination with Flexbox",
"license": "MIT",
"private": false,
"plugin": {
"name": "VueTinyPagination",
"entryFile": "./index.js"
},
"author": {
"name": "Javier Diaz Chamorro",
"email": "[email protected]",
"url": "https://github.com/coderdiaz"
},
"scripts": {
"build": "rimraf dist && rollup -c --environment BUILD:production",
"prepare": "yarn lint && yarn test:unit && yarn build",
"lint": "eslint -c .eslintrc.js . --ext .js,.vue",
"test:unit": "jest -c"
},
"style": "dist/vue-tiny-pagination.css",
"main": "dist/vue-tiny-pagination.cjs.js",
"module": "dist/vue-tiny-pagination.esm.js",
"unpkg": "dist/vue-tiny-pagination.js",
"jsdelivr": "dist/vue-tiny-pagination.js",
"cdn": "dist/vue-tiny-pagination.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/coderdiaz/vue-tiny-pagination.git"
},
"bugs": {
"url": "https://github.com/coderdiaz/vue-tiny-pagination/issues"
},
"keywords": [
"vue",
"vuejs",
"vue-component",
"component",
"vue.js",
"pagination",
"paginate",
"tiny-paginate",
"tiny",
"small",
"vue-paginate"
],
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-vue": "^5.2.3",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"rimraf": "^2.6.3",
"rollup": "^1.16.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-vue": "^5.0.1",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"vue": "^2.6.10"
}
}