-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 986 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
40
41
42
{
"name": "@ckomop0x/weather-cli",
"private": false,
"version": "1.1.0",
"description": "CLI for getting weather",
"main": "weather.js",
"bin": {
"weather": "weather.js"
},
"type": "module",
"scripts": {
"start": "node weather.js",
"lint": "eslint \"./**/*.{ts,tsx,js}\" --fix",
"lint:check": "eslint \"./**/*.{ts,tsx,js}\"",
"release": "npm publish --access public"
},
"keywords": [
"cli",
"weather"
],
"author": "Pavel Klochkov",
"license": "ISC",
"homepage": "https://github.com/ckomop0x/weather-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/ckomop0x/weather-cli.git"
},
"bugs": {
"url": "https://github.com/ckomop0x/weather-cli/issues",
"email": "[email protected]"
},
"dependencies": {
"axios": "^1.7.4",
"chalk": "^5.2.0",
"dedent-js": "^1.0.1"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"eslint": "9.14.0",
"globals": "15.12.0"
}
}