-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "clim8",
"version": "4.1.0",
"description": "clim8 is a CLI Weather forecast service based on the API of https://openweathermap.org/",
"main": "index.js",
"scripts": {
"build": "babel index.js --out-file app.js",
"lint": "node node_modules/eslint/bin/eslint.js **/*.js"
},
"bin": {
"clim8": "app.js"
},
"license": "MIT",
"author": {
"name": "Alessandro (silversonicaxel) Rabitti",
"url": "https://github.com/silversonicaxel"
},
"contributors": [
{
"email": "[email protected]",
"name": "Vincenzo (Wilk) Ferrari",
"url": "https://github.com/wilk"
}
],
"repository": {
"type": "git",
"url": "https://github.com/silversonicaxel/clim8"
},
"engines": {
"node": ">=10.12.0",
"npm": ">= 6.0.0",
"yarn": ">= 1.13.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2"
},
"dependencies": {
"@babel/runtime": "^7.7.6",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"node-fetch": "^2.6.0"
}
}