-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) 路 1.39 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) 路 1.39 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
{
"name": "wettr",
"version": "0.0.7",
"description": "馃對 Easy way to check Weather via the command line.",
"main": "bin/wettr.js",
"scripts": {
"start": "node bin/wettr.js",
"start:api": "node api/server.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"format": "npm run prettier:fix && npm run lint:fix"
},
"keywords": [
"weather",
"weather-cli"
],
"author": {
"name": "DevXprite",
"email": "devXprite@gmail.com"
},
"license": "GNU v3",
"homepage": "https://github.com/devXprite/wettr",
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.0",
"cli-table3": "^0.6.3",
"dotenv": "^16.0.3",
"enquirer": "^2.3.6",
"express": "^4.18.2",
"moment": "^2.29.4",
"ora": "^5.4.1"
},
"devDependencies": {
"asciify-image": "^0.1.9",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"prettier": "2.7.1"
},
"bin": {
"wettr": "bin/wettr.js",
"weather": "bin/wettr.js"
}
}