-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 928 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
{
"name": "weatherterm",
"version": "1.4.4",
"description": "A terminal client to get the weather for your current location",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint ./index.js; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbernheim4/weatherterm.git"
},
"keywords": [
"weather",
"terminal",
"weather",
"forecast"
],
"author": "Samuel Bernheim",
"license": "MIT",
"bin": {
"weather": "./index.js"
},
"bugs": {
"url": "https://github.com/sbernheim4/weatherterm/issues"
},
"homepage": "https://github.com/sbernheim4/weatherterm#readme",
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^2.0.1",
"external-ip": "^1.3.1",
"geoip-lite": "^1.2.1",
"request": "^2.81.0"
},
"devDependencies": {
"eslint": "^4.3.0"
}
}