-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 811 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 811 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
{
"name": "weather",
"version": "1.0.0",
"description": "This is a program which uses HTML's built in Geolocation tool to obtain the users latitude and longitude. With this data the program makes a call to the Weather api to then return the temperature \r at the user's location.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^17.2.2",
"express": "^5.1.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/khopper404/Weather.git"
},
"bugs": {
"url": "https://github.com/khopper404/Weather/issues"
},
"homepage": "https://github.com/khopper404/Weather#readme"
}