This repository has been archived by the owner on Dec 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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
{
"name": "vue-gif-search",
"author": "Daniel Villalobos <[email protected]>",
"description": "A simple component to search gifs in vue with Giphy and get the url",
"version": "1.0.1",
"main": "dist/VueGifSearch.umd.js",
"module": "dist/VueGifSearch.esm.js",
"unpkg": "dist/VueGifSearch.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ponytojas/vue-gif-search.git"
},
"bugs": {
"url": "https://github.com/ponytojas/vue-gif-search/issues"
},
"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/VueGifSearch.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/VueGifSearch.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/VueGifSearch.min.js"
},
"files": [
"dist",
"dist/VueGifSearch.min.js",
"dist/VueGifSearch.umd.js",
"dist/VueGifSearch.esm.js"
],
"keywords": [
"vue-component",
"vuejs",
"gif",
"gif search"
],
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "^4.5.4",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^1.19.1",
"rollup": "^2.6.1",
"rollup-plugin-vue": "^5.1.6",
"core-js": "^3.6.5",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
}
}