75 lines
1.9 KiB
JSON
75 lines
1.9 KiB
JSON
{
|
|
"name": "vue-lazyload",
|
|
"version": "3.0.0",
|
|
"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 <hilongjw@gmail.com>",
|
|
"bugs": {
|
|
"url": "https://github.com/hilongjw/vue-lazyload/issues"
|
|
},
|
|
"browserslist": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"not ie",
|
|
"not chrome < 49"
|
|
],
|
|
"license": "MIT",
|
|
"jest": {
|
|
"setupFiles": [
|
|
"jest-canvas-mock"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
"@babel/preset-env": "^7.13.12",
|
|
"@rollup/plugin-replace": "^2.4.2",
|
|
"assign-deep": "^1.0.1",
|
|
"babel-cli": "^6.26.0",
|
|
"babel-core": "^6.26.3",
|
|
"babel-plugin-external-helpers": "^6.22.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.4",
|
|
"eslint": "^7.23.0",
|
|
"eslint-config-standard": "^16.0.2",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^4.3.1",
|
|
"eslint-plugin-standard": "^5.0.0",
|
|
"jest": "^26.6.3",
|
|
"jest-canvas-mock": "^2.3.1",
|
|
"mocha": "^8.3.2",
|
|
"rollup": "^2.43.1",
|
|
"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-typescript": "^1.0.1",
|
|
"tslib": "^2.1.0",
|
|
"typescript": "^4.1.3",
|
|
"vue": "^3.0.9"
|
|
}
|
|
}
|