-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
104 lines (104 loc) · 3.08 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "v2-lazy-list",
"version": "2.2.5",
"description": "A simple lazy load list component based Vue 2.x",
"author": "dwqs",
"license": "MIT",
"main": "dist/index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dwqs/v2-lazy-list.git"
},
"bugs": {
"url": "https://github.com/dwqs/v2-lazy-list/issues"
},
"homepage": "https://github.com/dwqs/v2-lazy-list",
"keywords": [
"lazy",
"lazyload",
"lazy-load-list",
"vuejs2",
"viewport"
],
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"prepush": "npm run ilint -q",
"prepublishOnly": "npm run build",
"ilint": "npx eslint src/**/*.js src/**/*.vue",
"fix": "npx eslint --fix src/**/*.js src/**/*.vue",
"test": "npx karma start test/karma.conf.js --single-run",
"commitmsg": "npx commitlint -e",
"dev": "npx cross-env NODE_ENV=development node ./build/dev-server.js",
"build": "rm -rf dist && npx cross-env NODE_ENV=production npx webpack --config ./webpack.build.config.js --hide-modules",
"build:exam": "npx cross-env NODE_ENV=production npx webpack --config ./build/webpack.prod.config.js --hide-modules && mv ./examples/dist/index.html ./"
},
"dependencies": {
"raf": "^3.4.0"
},
"peerDependencies": {
"vue": ">= 2.5.0",
"beautify-scrollbar": ">=1.0.2"
},
"devDependencies": {
"@commitlint/cli": "^6.1.2",
"@commitlint/config-angular": "^6.1.2",
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"beautify-scrollbar": "^1.0.6",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.18",
"compression-webpack-plugin": "^1.1.9",
"cross-env": "^5.0.5",
"css-loader": "^0.28.10",
"cssnano": "^3.10.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.18.1",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^2.1.0",
"extract-text-webpack-plugin": "^4.0.0-alpha.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.13",
"less": "^3.0.1",
"less-loader": "^4.0.6",
"mocha": "^5.0.1",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.1.1",
"progress-bar-webpack-plugin": "^1.11.0",
"vue": "^2.5.13",
"vue-loader": "^14.1.1",
"vue-style-loader": "^4.0.2",
"vue-template-compiler": "^2.5.13",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^3.0.0",
"webpack-md5-hash": "^0.0.6",
"webpack-parallel-uglify-plugin": "^1.0.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}