-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 KB
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
49
50
51
52
53
54
{
"name": "outside",
"version": "1.0.0",
"description": "A CLI to help you get the forecast for today's weather based on your location.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jonathangaldino/weather-cli.git.git"
},
"bin": {
"outside": "bin/outside"
},
"scripts": {
"dev": "tsc --watch",
"build": "rm -rf build && tsc",
"test": "jest"
},
"keywords": [
"weather",
"forecast",
"rain"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">= 18.16.x",
"pnpm": ">= 8.6.x"
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.1.3",
"minimist": "^1.2.8",
"ora": "^6.3.1",
"prompts": "^2.4.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/minimist": "^1.2.2",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}