forked from tangbc/vue-virtual-scroll-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "vue-virtual-scroll-list",
"version": "1.2.7",
"description": "A vue (2.x) component that support big data list with high scroll performance.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint index.js",
"dev": "webpack --watch --config ./dev/webpack.conf.js",
"examples": "webpack --watch --config ./examples/webpack.conf.js"
},
"keywords": [
"vue",
"component",
"big-data",
"big-list",
"scroll-list",
"virtual-list"
],
"repository": {
"type": "git",
"url": "https://github.com/tangbc/vue-virtual-scroll-list"
},
"author": "TANG",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.5.1",
"css-loader": "^0.27.2",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"vue": "^2.3.0",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.3.0",
"webpack": "^2.2.1"
}
}