-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
70 lines (70 loc) · 2.17 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
69
70
{
"name": "vue-virtual-collection",
"version": "1.4.0",
"description": "Vue component for efficiently rendering large collection data",
"keywords": [
"vue",
"vuejs",
"vue-component",
"virtual",
"collection",
"scrolling",
"infinite",
"virtualized",
"recycle",
"dom"
],
"main": "dist/index.js",
"scripts": {
"dev": "parcel dev/index.html -d .parcel",
"dev:demo": "parcel demo/index.html -d .parcel",
"dist": "npm run readme:toc && npm run lint && webpack",
"dist:demo": "parcel build demo/index.html -d demo/dist --no-cache --detailed-report --public-url /vue-virtual-collection/demo/dist",
"lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix",
"prepare": "npm run dist",
"prepublishOnly": "npm run dist",
"readme:toc": "npx doctoc ./README.md",
"test": "npm run lint && mocha-webpack --webpack-config webpack.config.js --require test/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starkwang/vue-virtual-collection.git"
},
"author": "starkwang",
"license": "MIT",
"bugs": {
"url": "https://github.com/starkwang/vue-virtual-collection/issues"
},
"sideEffects": false,
"homepage": "https://github.com/starkwang/vue-virtual-collection#readme",
"devDependencies": {
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-service": "^4.5.10",
"@vue/eslint-config-standard": "^6.0.0",
"@vue/test-utils": "^1.1.2",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"css-loader": "^0.25.0",
"eslint": "^7.17.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.4.0",
"file-loader": "^0.9.0",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"less": "^4.1.0",
"mocha": "^5.2.0",
"mocha-webpack": "^1.1.0",
"optimize-css-assets-webpack-plugin": "^3.1.1",
"parcel-bundler": "1.6.2",
"parcel-plugin-vue": "1.5.0",
"vue": "^2.0.0",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.0.0",
"webpack": "^2.2.0",
"webpack-merge": "^4.1.0"
}
}