-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "weather-underground-node",
"version": "1.3.1",
"main": "./lib/weather-underground-node.js",
"description": "Weather underground client for node.js - NEW 2019 API from The Weather Company (IBM) only for PWS owners",
"homepage": "http://www.github.com/gablau/weather-underground-node",
"keywords": [
"weather",
"wunderground",
"weather underground",
"weather underground new",
"weather underground api",
"weather underground new api",
"weather.com",
"weatherunderground.com",
"weather station",
"personal weather station",
"PWS",
"The Weather Company",
"IBM weather"
],
"author": "Gabriele Lauricella <[email protected]> (https://github.com/gablau)",
"licenses": [{
"type": "MIT",
"url": "https://github.com/gablau/weather-underground-node/LICENSE"
}],
"dependencies": {
"node-fetch": "^2.7.0"
},
"devDependencies": {
"cross-dotenv": "^1.x",
"env-cmd": "^10.x",
"mocha": "^11.x",
"nock": "^13.x",
"nyc": "^17.x",
"should": "^13.x"
},
"scripts": {
"test": "cross-dotenv NODE_ENV=test mocha --reporter Spec",
"coverage": "cross-dotenv NODE_ENV=test nyc --reporter=html --reporter=text mocha"
},
"engines": {
"node": ">=10.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gablau/weather-underground-node.git"
},
"bugs": {
"url": "https://github.com/gablau/weather-underground-node/issues"
},
"directories": {
"test": "test"
},
"license": "MIT"
}