This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.86 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
{
"name": "vue-tiny-lazyload-img",
"description": "🐌 A small size Vue.js directive for lazy loading images using IntersectionObserver API",
"version": "0.1.0",
"author": "Irfan Maulana <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/vue-tiny-lazyload-img.cjs.min.js",
"module": "dist/vue-tiny-lazyload-img.esm.js",
"unpkg": "dist/vue-tiny-lazyload-img.umd.min.js",
"jsdelivr": "dist/vue-tiny-lazyload-img.umd.min.js",
"keywords": [
"vue 2 lazy load",
"vue lazy load",
"vue lazyload",
"vue lazyload image"
],
"repository": {
"type": "git",
"url": "https://github.com/mazipan/vue-tiny-lazyload-img.git"
},
"bugs": {
"url": "https://github.com/mazipan/vue-tiny-lazyload-img/issues"
},
"files": [
"dist"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --open",
"build:demo": "rm -rf dist-demo && cross-env NODE_ENV=production webpack --progress --hide-modules",
"build:lib": "rimraf dist && ./node_modules/.bin/bili --config bili.config.js",
"publish-demo": "node ./publish-demo.js",
"test": "./node_modules/.bin/jest --coverage",
"dist": "npm run build:demo && npm run build:lib && npm run publish-demo",
"lint": "eslint --ext .js,.vue --ignore-path .eslintignore .",
"lint-fix": "eslint --ext .js,.vue --ignore-path .eslintignore . --fix"
},
"dependencies": {
"vue": "^2.6.6",
"vue-google-adsense": "^1.3.0",
"intersection-observer": "^0.7.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.4.7",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "24.9.0",
"babel-loader": "^8.0.5",
"bili": "^4.2.5",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "5.1.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.1.2",
"gh-pages": "2.1.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jest-serializer-vue": "^2.0.2",
"node-sass": "^4.11.0",
"rollup-plugin-vue": "^4.7.1",
"sass-loader": "^7.1.0",
"vue-jest": "^3.0.3",
"vue-loader": "^15.6.2",
"vue-script2": "^2.0.3",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "^2.6.6",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-serve": "^2.0.3"
}
}