forked from stackjie/vue-pull-to
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.66 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
{
"name": "vue-pull-to",
"version": "0.1.5",
"description": "A pull-down refresh and pull-up load more and infinite scroll component of the vue.js",
"main": "dist/vue-pull-to.js",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "webpack-dev-server --config ./build/examples.dev.config.js",
"build": "webpack --config ./build/prod.config.js",
"build-examples": "webpack --config ./build/examples.prod.config.js",
"unit": "cross-env NODE_ENV=test karma start test/unit/karma.conf.js --single-run",
"test": "npm run unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackjie/vue-pull-to.git"
},
"author": "stackjie",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackjie/vue-pull-to/issues"
},
"homepage": "https://github.com/stackjie/vue-pull-to#readme",
"browserslist": [
"iOS >= 7",
"Android >= 4.1"
],
"peerDependencies": {
"vue": "^2.2.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.1.4",
"chai": "^4.2.0",
"clean-webpack-plugin": "^2.0.2",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"gulp": "^4.0.2",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.0-rc.6",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mocha": "^6.1.4",
"postcss-loader": "^3.0.0",
"puppeteer": "^1.17.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"standard": "^12.0.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"vue": "^2.2.6",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-merge": "^4.2.1"
}
}