-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
83 lines (83 loc) · 2.23 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
{
"name": "vue-paginate",
"version": "3.6.0",
"description": "A simple vue.js plugin to paginate data",
"main": "dist/vue-paginate.js",
"scripts": {
"build": "rollup --environment NODE_ENV:production -c build/rollup.config.js && uglifyjs dist/vue-paginate.js -cm --comments -o dist/vue-paginate.min.js",
"test": "./node_modules/karma/bin/karma start",
"dev": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --content-base examples --open --inline --hot"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/TahaSh/vue-paginate.git"
},
"keywords": [
"paginate",
"pagination",
"page",
"chunk",
"navigate",
"slice",
"vue"
],
"dependencies": {
"vue": "2.3.3"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-espower": "^2.1.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babelify": "^7.3.0",
"brfs": "^1.4.3",
"browserify": "^13.0.1",
"browserify-shim": "^3.8.12",
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"file-loader": "^0.9.0",
"karma": "^0.13.22",
"karma-browserify": "^5.0.5",
"karma-chrome-launcher": "^1.0.1",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.4",
"karma-source-map-support": "^1.1.0",
"mocha": "^2.4.5",
"node-sass": "^4.8.3",
"phantomjs-prebuilt": "^2.1.7",
"rollup": "^0.31.2",
"rollup-plugin-babel": "^2.5.1",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"sass-loader": "^4.1.1",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.2",
"vue-loader": "^10.0.2",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "2.3.3",
"watchify": "^3.7.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"author": "Taha Shashtari",
"license": "MIT"
}