forked from PeachScript/vue-infinite-loading
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.51 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
{
"name": "vue-infinite-loading",
"version": "2.3.1",
"description": "An infinite scroll plugin for Vue.js",
"main": "dist/vue-infinite-loading.js",
"typings": "types/index.d.ts",
"files": [
"dist/vue-infinite-loading.js",
"types/*.d.ts",
"src"
],
"author": {
"name": "PeachScript",
"email": "[email protected]"
},
"scripts": {
"dev": "webpack-dev-server --hot --info=false --port 8000",
"build": "NODE_ENV=production webpack -p --progress --hide-modules",
"lint": "eslint --ext .js,.vue src",
"test": "BABEL_ENV=test karma start",
"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": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^0.28.4",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-import": "^2.7.0",
"html-webpack-plugin": "^2.30.1",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.3.1",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.4",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"mocha": "^3.5.0",
"phantomjs-prebuilt": "^2.1.15",
"pre-commit": "^1.2.2",
"sinon": "^2.4.1",
"sinon-chai": "^2.13.0",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"vue": "^2.2.0",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.5.4",
"webpack-dev-server": "^2.7.1"
},
"peerDependencies": {
"vue": "^2.2.0"
},
"license": "MIT",
"pre-commit": [
"lint"
],
"browserslist": [
"> 1%",
"last 1 versions",
"last 4 Android versions",
"last 3 iOS versions"
]
}