-
Notifications
You must be signed in to change notification settings - Fork 870
/
package.json
70 lines (70 loc) · 1.8 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-lazyload",
"version": "1.3.5",
"description": "Vue module for lazy-loading images in your vue.js applications.",
"main": "vue-lazyload.js",
"module": "vue-lazyload.esm.js",
"unpkg": "vue-lazyload.js",
"scripts": {
"build": "node build",
"lint": "eslint ./src",
"test": "jest"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/hilongjw/vue-lazyload.git"
},
"typings": "types/index.d.ts",
"keywords": [
"vue-lazyload",
"vue",
"lazyload",
"vue-directive"
],
"author": "Awe <[email protected]>",
"bugs": {
"url": "https://github.com/hilongjw/vue-lazyload/issues"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"license": "MIT",
"jest": {
"setupFiles": [
"jest-canvas-mock"
]
},
"devDependencies": {
"@rollup/plugin-replace": "^2.3.4",
"assign-deep": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.3.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"mocha": "^4.0.1",
"rollup": "^2.39.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^1.0.1",
"vue": "^2.6.12"
}
}