-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.88 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
86
87
88
89
90
91
92
93
94
{
"name": "vue-sliding-pagination",
"version": "1.3.2",
"repository": {
"type": "git",
"url": "https://github.com/eFrane/vue-sliding-pagination"
},
"homepage": "https://vue-sliding-pagination.efrane.com",
"description": "Sliding pagination component",
"author": "eFrane <[email protected]>",
"license": "MIT",
"main": "dist/vue-sliding-pagination.umd.js",
"unpkg": "dist/browser/vue-sliding-pagination.min.js",
"keywords": [
"pagination",
"vue",
"sliding window",
"moving window"
],
"scripts": {
"build": "rimraf ./dist && webpack --config webpack.config.js",
"unit": "jest --config test/unit/jest.conf.js",
"prepare": "yarn run lint",
"prepack": "yarn run test && yarn run build",
"tdd": "yarn run unit --watch",
"test": "yarn run unit --coverage",
"lint": "eslint --ext .js,.vue src test/unit",
"pr": "yarn && yarn prepack && echo 'Please check if the documentation still works'"
},
"dependencies": {
"vue": "^2.6"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.26",
"autoprefixer": "^10.4.16",
"babel-core": "^6.22.1",
"babel-eslint": "^10.1.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.1",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"jest": "^26.1.0",
"jest-serializer-vue": "^3.1.0",
"mini-css-extract-plugin": "^1.3.1",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"portfinder": "^1.0.13",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-url": "^9.0.0",
"rimraf": "^5.0.1",
"sass": "^1.27.0",
"sass-loader": "^14.2.1",
"semver": "^7.1.3",
"shelljs": "^0.8.3",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.0.0",
"vue-jest": "^3.0.1",
"vue-loader": "^16.8.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.0.0",
"webpack-cli": "^4.1.0",
"webpack-merge": "^5.2.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}