forked from PeachScript/vue-infinite-loading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.35 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "vue-infinite-loading",
"version": "2.4.5",
"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 --config scripts/webpack.config.js --hot --info=false --port 8000",
"build": "NODE_ENV=production webpack --config scripts/webpack.config.js -p --progress --hide-modules",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "bash ./scripts/deploy_docs.sh",
"lint": "eslint -f friendly --ext .js,.vue ./",
"test": "BABEL_ENV=test karma start scripts/karma.conf.js",
"precommit": "npm run lint",
"commitmsg": "commitlint -E GIT_PARAMS",
"release": "bash ./scripts/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": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@vuepress/plugin-google-analytics": "^1.0.0-alpha.16",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.2",
"babel-plugin-istanbul": "^5.0.1",
"chai": "^3.5.0",
"css-loader": "^0.28.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-formatter-friendly": "^6.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-vue": "^4.7.1",
"focus-visible": "^4.1.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"karma": "^3.0.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": "^4.0.0-rc.2",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.15",
"postcss-loader": "^3.0.0",
"sinon": "^2.4.1",
"sinon-chai": "^2.13.0",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.0.0-alpha.23",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"license": "MIT",
"browserslist": [
"> 1%",
"last 1 versions",
"last 4 Android versions",
"last 3 iOS versions"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"core",
"config",
"spinner",
"deps"
]
]
}
},
"eslintConfig": {
"root": true,
"extends": [
"airbnb-base",
"plugin:vue/essential"
]
},
"eslintIgnore": [
"dist",
"test/unit/coverage",
"scripts"
]
}