-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
{
"name": "garen-loadmore",
"version": "1.0.0",
"description": "基于vue的移动端下拉刷新上拉无限滚动加载支持自定义文案自定义gif图的插件",
"main": "dist/main.js",
"scripts": {
"test:mocha": "mocha-webpack --webpack-config config/webpack.test.config.js --require test/setup.js test/**/*.spec.js",
"test": "cross-env BABEL_ENV=test karma start --single-run",
"dev": "npx webpack-dev-server --config config/webpack.dev.config.js --hot",
"build": "npx webpack --config config/webpack.pro.config.js",
"build:page": "npx webpack --config config/webpack.page.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duyanpeng/vue-quick-loadmore.git"
},
"keywords": [
"vue",
"loadmore",
"infinite",
"scroll",
"javascript"
],
"author": "duyanpeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/duyanpeng/vue-quick-loadmore/issues"
},
"homepage": "https://github.com/duyanpeng/vue-quick-loadmore#readme",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.24",
"autoprefixer": "^9.1.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"expect": "^23.5.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^12.0.0",
"jsdom-global": "^3.0.2",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"postcss": "^7.0.2",
"postcss-loader": "^3.0.0",
"sinon": "^7.2.7",
"sinon-chai": "^3.2.0",
"style-loader": "^0.22.1",
"vue-loader": "^15.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"vue": "^2.5.17",
"vue-template-compiler": "^2.5.17"
},
"browserslist": [
"iOS >= 7",
"Android >= 4"
]
}