-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
49
{
"name": "@domnc/whats-the-weather",
"version": "0.2.15",
"description": "whats-the-weather",
"license": "MIT",
"author": {
"name": "Dominic Kolbe",
"email": "kolbedominic@gmail.com",
"url": "https://dominickolbe.dk"
},
"repository": "git@github.com:dominickolbe/whats-the-weather.git",
"homepage": "https://github.com/dominickolbe/whats-the-weather#readme",
"main": "./lib/index.js",
"bin": {
"whats-the-weather": "./lib/index.js"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"prebuild": "yarn test && rm -rf ./lib",
"build": "tsc",
"postbuild": "chmod +x ./lib/index.js",
"prettier:check": "prettier --check src/**/*",
"prettier:fix": "prettier --write src/**/*",
"test": "yarn prettier:check"
},
"dependencies": {
"axios": "0.21.4",
"chalk": "4.1.2",
"commander": "8.2.0",
"dotenv": "10.0.0",
"option-t": "28.1.1",
"ora": "5.4.1",
"runtypes": "6.4.0"
},
"devDependencies": {
"@types/node": "16.9.1",
"prettier": "2.4.0",
"ts-node": "10.2.1",
"typescript": "4.4.2"
},
"keywords": [
"cli",
"cli-app",
"terminal",
"weather",
"nodejs",
"typescript"
]
}