forked from lokyoung/vuejs-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "vuejs-paginate",
"version": "3.0.0",
"description": "A simple pagination component for Vue3",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && webpack --config ./webpack.config.js",
"test": "NODE_NO_WARNINGS=1 jest --runInBand",
"demo": "webpack-dev-server --config ./demo/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lokyoung/vuejs-paginate.git"
},
"keywords": [
"vue",
"paginate",
"pagination"
],
"author": "Cain Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/lokyoung/vuejs-paginate/issues"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.3.2",
"@vue/test-utils": "^1.3.5",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^4.0.0",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.26.1",
"jest": "^26.5.0",
"phantomjs-prebuilt": "^2.1.14",
"vue": "3.3.2",
"vue-loader": "^16.0.2",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^2.6.1"
}
}