forked from tangbc/vue-virtual-scroll-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.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
{
"name": "vue-virtual-scroll-list",
"version": "2.3.3",
"description": "A vue component support big amount data list with high scroll performance.",
"main": "dist/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"lint": "eslint --fix src --ext .js",
"dev:docs": "cd example && npm run dev",
"build:docs": "cd example && npm run build && cp ../dist/index.js ../docs",
"build": "npm run lint && rollup --config ./scripts/rollup.production.js",
"dev": "rollup --config ./scripts/rollup.development.js --watch",
"test": "rm -rf ./coverage && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangbc/vue-virtual-scroll-list.git"
},
"keywords": [
"vue",
"big-data",
"big-list",
"scroll-list",
"virtual-list"
],
"author": "tangbc",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangbc/vue-virtual-scroll-list/issues"
},
"homepage": "https://github.com/tangbc/vue-virtual-scroll-list#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@vue/test-utils": "^1.0.0-beta.33",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.5.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"jest": "^25.5.1",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"vue": "^2.6.11",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11"
}
}