forked from PeachScript/vue-infinite-loading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.24 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
{
"name": "vue-infinite-loading",
"version": "2.1.3",
"description": "An infinite loading/scroll plugin for Vue.js 1.0 & Vue.js 2.0",
"main": "dist/vue-infinite-loading.js",
"files": [
"dist/vue-infinite-loading.js",
"src"
],
"author": {
"name": "PeachScript",
"email": "scdzwyxst@gmail.com"
},
"scripts": {
"dev": "webpack-dev-server --inline --hot --quiet --port=8000",
"build": "NODE_ENV=production webpack --progress --hide-modules",
"test": "karma start --single-run",
"lint": "eslint './src/**(vue|js)'",
"release": "bash ./release.sh"
},
"keywords": [
"vue",
"vue components",
"infinite loading",
"infinite scroll",
"vue infinite"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PeachScript/vue-infinite-loading.git"
},
"bugs": {
"url": "https://github.com/PeachScript/vue-infinite-loading/issues"
},
"homepage": "https://github.com/PeachScript/vue-infinite-loading",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-runtime": "^6.0.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^1.4.0",
"eslint-plugin-import": "^1.6.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.16.0",
"isparta-loader": "^2.0.0",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.7",
"pre-commit": "^1.2.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"vue": "^2.2.0",
"vue-hot-reload-api": "^1.3.3",
"vue-html-loader": "^1.2.2",
"vue-loader": "^10.0.0",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.2.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"vue": "^2.2.0"
},
"license": "MIT",
"pre-commit": [
"lint"
]
}