-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 874 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": "@vboechat/yanayi",
"version": "1.0.4",
"description": "Yanayi is a CLI program that shows you the weather for a given city",
"main": "./lib/yanayi.js",
"bin": {
"yanayi": "./lib/yanayi.js"
},
"scripts": {
"start": "ts-node ./src/yanayi.ts",
"build": "tsc -p ."
},
"keywords": [
"weather",
"cli-app",
"cli",
"vboechat",
"yanayi",
"typescript"
],
"author": "Victor Ribeiro Boechat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vboechat/yanayi.git"
},
"homepage": "https://github.com/vboechat/yanayi",
"dependencies": {
"axios": "^1.2.2",
"commander": "^9.4.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@vboechat/eslint-config": "^1.1.4",
"eslint": "^8.30.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}