-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 865 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
{
"name": "weather-cli",
"version": "1.0.0",
"description": "a CLI app that will provide brief weather information of the requested region",
"main": "app.js",
"scripts": {
"start": "ts-node src/app.ts",
"test": "jest",
"build-ts": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kencruz/weather-cli.git"
},
"keywords": [
"weather",
"cli",
"node"
],
"author": "Ken Cruz",
"license": "MIT",
"bugs": {
"url": "https://github.com/kencruz/weather-cli/issues"
},
"homepage": "https://github.com/kencruz/weather-cli#readme",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"ts-node": "^10.0.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
}
}