-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.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
{
"name": "v-photo",
"version": "1.0.0",
"description": "Vue.js plugin for img and picture HTML elements with support for browser-level lazy loading, and lazy loading using Intersection Observer API as fallback",
"main": "dist/v-photo.umd.js",
"module": "dist/v-photo.esm.js",
"unpkg": "dist/v-photo.min.js",
"browser": {
"./sfc": "src/v-photo.vue"
},
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/v-photo.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/v-photo.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/v-photo.min.js",
"lint": "vue-cli-service lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Styria-Digital/v-photo.git"
},
"keywords": [
"vue",
"vuejs",
"vue.js",
"image",
"picture",
"lazy",
"lazy loading"
],
"author": "Styria Digital / Marko Matic",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Styria-Digital/v-photo/issues"
},
"homepage": "https://github.com/Styria-Digital/v-photo",
"dependencies": {
"core-js": "^3.6.5",
"rollup": "^1.32.1",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"rollup-plugin-vue": "^5.1.9",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.7",
"@vue/cli-plugin-eslint": "~4.5.7",
"@vue/cli-service": "~4.5.7",
"@vue/eslint-config-airbnb": "^5.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^6.2.2",
"intersection-observer": "^0.11.0",
"vue-template-compiler": "^2.6.12"
}
}