-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.38 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
105
{
"name": "vue-l-lazyload",
"version": "1.1.1",
"description": "A lazyload and in-view detection plugin for Vue.js v2.x+.",
"main": "dist/main.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "webpack --config ./build/webpack.dev.conf.js --watch",
"lintFix": "eslint --ext .js,.vue --fix src/ test/specs/",
"startDev": "webpack-dev-server --config ./build/webpack.devServer.conf.js --hot",
"dist": "webpack --config ./build/webpack.prod.conf.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js",
"unitReport": "cross-env USE_COVERAGE=true npm run unit --single-run",
"unitWatch": "cross-env WATCH=true npm run unit",
"unitDebug": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --inspect-brk"
},
"repository": {
"type": "git",
"url": "https://github.com/lsycxyj/vue-l-lazyload.git"
},
"keywords": [
"vue",
"lazyload",
"lazy"
],
"author": "Light Leung <lsycxyj@gmail.com>",
"license": "LGPLv3",
"homepage": "https://github.com/lsycxyj/vue-l-lazyload.git",
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^6.6.1",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-rewire": "1.1.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.20.0",
"bluebird": "^3.5.3",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^3.1.4",
"css-loader": "^2.1.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"function-bind": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jquery": "^3.1.1",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-edge-launcher": "^0.2.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.5",
"less": "^2.7.2",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"postcss-loader": "^3.0.0",
"puppeteer": "^1.12.2",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"vue": "2.5.21",
"vue-loader": "^15.6.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "2.5.21",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">= 7.0.0",
"npm": ">= 3.0.0"
}
}