This repository was archived by the owner on Aug 5, 2025. It is now read-only.
forked from stackjie/vue-pull-to
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.72 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.72 KB
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-pull-to",
"version": "0.1.9",
"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 serve --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/FinSync/fs-vue-pull-to.git"
},
"author": "stackjie",
"license": "MIT",
"bugs": {
"url": "https://github.com/FinSync/fs-vue-pull-to/issues"
},
"homepage": "https://github.com/FinSync/fs-vue-pull-to#readme",
"browserslist": [
"iOS >= 7",
"Android >= 4.1"
],
"peerDependencies": {
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/register": "^7.13.16",
"@babel/runtime": "^7.14.0",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.4",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^7.10.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"html-webpack-plugin": "^5.3.1",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^5.0.0",
"less": "^4.1.1",
"less-loader": "^9.0.0",
"mocha": "^9.0.0",
"postcss-loader": "^5.3.0",
"puppeteer": "^10.0.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"standard": "^16.0.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.14",
"vue-loader": "^15.9.7",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"postcss": "^8.3.0"
}
}