-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "vue-virtualscroll",
"version": "1.0.0",
"description": "A vue (2.x) component for virtualscroll list.",
"main": "dist/index.js",
"files": [
"dist/index.js",
"dist/index.js.map"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "cross-env NODE_ENV=test karma start test/karma.conf.js --single-run"
},
"keywords": [
"vue",
"component",
"big-data",
"big-list",
"scroll-list",
"virtual-list"
],
"repository": {
"type": "git",
"url": "https://github.com/ddgll/vue-virtualscroll"
},
"author": "ddgll <[email protected]>",
"license": "MIT",
"dependencies": {
"vue": "^2.3.3"
},
"devDependencies": {
"axios": "^0.16.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.0.1",
"compression-webpack-plugin": "^0.4.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"object-hash": "^1.1.8",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0",
"style-loader": "^0.18.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglifyjs-webpack-plugin": "^0.4.3",
"vue-loader": "^12.2.1",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}