-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathpackage.json
122 lines (122 loc) · 3.04 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
{
"name": "vue-infinite-loading",
"version": "2.3.3",
"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": "scdzwyxst@gmail.com"
},
"scripts": {
"dev": "webpack-dev-server --hot --info=false --port 8000",
"build": "NODE_ENV=production webpack -p --progress --hide-modules",
"lint": "eslint -f friendly --ext .js,.vue ./",
"test": "BABEL_ENV=test karma start",
"precommit": "npm run lint",
"commitmsg": "commitlint -E GIT_PARAMS",
"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": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"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.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",
"html-webpack-plugin": "^2.30.1",
"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": "^2.0.4",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.15",
"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",
"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",
"karma.conf.js",
"webpack.config.js"
]
}