-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1003 Bytes
/
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
{
"name": "weather-adapter",
"version": "0.6.1",
"description": "Current weather conditions",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebThingsIO/weather-adapter.git"
},
"author": "WebThingsIO",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/WebthingsIO/weather-adapter/issues"
},
"homepage": "https://github.com/WebThingsIO/weather-adapter#readme",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0"
},
"files": [
"LICENSE",
"README.md",
"SHA256SUMS",
"index.js",
"lib/provider/accuweather.js",
"lib/provider/darksky.js",
"lib/provider/openweathermap.js",
"lib/provider/provider.js",
"lib/provider/wunderground.js",
"lib/weather-adapter.js",
"lib/weather-device.js",
"lib/weather-property.js",
"manifest.json",
"node_modules"
]
}