-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 821 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 821 Bytes
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
{
"name": "scrapeWeather",
"description": "Get histoirical weather data hourly for single day, daily for month or custom range",
"tags": [
"weather",
"scrape",
"data",
"hourly"
],
"version": "0.10",
"author": {
"name": "Nicholas Mattise",
"email": "n.mattise@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/nmattise/scrapeWeather.git"
},
"bugs": {
"url": "http://github.com/nmattise/scrapeWeather/issues"
},
"license": "MIT",
"engines": [
"node >= 0.8.0"
],
"main": "index.js",
"dependencies": {
"csv":"0.4.0",
"request":"2.36.0"
},
"optionalDependencies": {},
"scripts": {
"test": "node test.js"
},
"readmeFilename": "README.md",
"homepage": "https://github.com/nmattise/scrapeWeather"
}