-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
55 lines (55 loc) · 1.72 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
{
"name": "vue-weather-widget",
"version": "4.4.0",
"description": "Weather forecast widget for Vuejs using DarkSky api",
"exportName": "vue-weather-widget",
"main": "src/index.js",
"module": "examples/static/dist/js/vue-weather-widget.esm.js",
"unpkg": "examples/static/dist/js/vue-weather-widget.min.js",
"browser": {
"VueWeatherWidget": "src/VueWeatherWidget.vue"
},
"files": [
"src",
"dist"
],
"scripts": {
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"patch": "npm version patch --no-git-tag-version && git add package.json package-lock.json && git commit -m \"Update version:patch\" && git push && npm publish",
"minor": "npm version minor --no-git-tag-version && git add package.json package-lock.json && git commit -m \"Update version:minor\" && git push && npm publish",
"major": "npm version major --no-git-tag-version && git add package.json package-lock.json && git commit -m \"Update version:major\" && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dipu-bd/vue-weather-widget.git"
},
"keywords": [
"weather",
"forecast",
"darksky",
"vue-weather",
"vue-weather-widget",
"vuejs-weather",
"vuejs-weather-widget",
"vue",
"vuejs",
"vue-plugin",
"vue-component"
],
"author": "Sudipto Chandra <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dipu-bd/vue-weather-widget/issues"
},
"homepage": "https://github.com/dipu-bd/vue-weather-widget#readme",
"dependencies": {
"jsonp": "^0.2.1",
"vue-skycons": "^4.3.4"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.28.0",
"vue": "^2.7.16"
}
}