-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "vuejs-loadmore",
"version": "1.0.8",
"description": "A pull-down refresh and pull-up loadmore scroll component for Vue.js",
"entry": "packages/index.js",
"main": "lib/index.js",
"module": "lib/index.module.js",
"scripts": {
"build": "yarn clean && rollup -c",
"test": "jest",
"lint": "eslint ./packages --ext .vue,.js,.ts",
"lint-fix": "eslint --fix ./packages --ext .vue,.js,.ts",
"clean": "rimraf ./lib",
"example:dev": "cd example && yarn install && yarn serve",
"example:build": "cd example && yarn install && yarn build"
},
"repository": {
"type": "git",
"url": "[email protected]:staticdeng/vuejs-loadmore.git"
},
"keywords": [
"vue-loadmore",
"vue-refresh",
"vue-srcoll",
"loadmore",
"refresh",
"srcoll"
],
"author": "staticdeng",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@rollup/plugin-node-resolve": "^13.0.6",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "1.0.0-beta.29",
"autoprefixer": "^10.3.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^25.5.4",
"postcss": "^8.4.4",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"vue": "^2.6.14",
"vue-jest": "4.0.0-rc.0",
"vue-template-compiler": "^2.6.14"
},
"browserslist": [
"Android >= 4.0",
"iOS >= 8"
],
"bugs": {
"url": "https://github.com/staticdeng/vuejs-loadmore/issues"
},
"homepage": "https://github.com/staticdeng/vuejs-loadmore#readme"
}