-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.21 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
50
51
{
"name": "weather-cli",
"version": "1.5.4",
"description": "Check the weather for your city from your terminal",
"license": "MIT",
"repository": "riyadhalnur/weather-cli",
"main": "src/index.js",
"author": {
"name": "Riyadh Al Nur",
"email": "[email protected]",
"url": "https://verticalaxisbd.com"
},
"bin": {
"weather": "src/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "mocha -t 10000 tests/tests.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec tests/tests.js -t 100000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"files": [
"src/index.js",
"src/cli.js",
"src/schema.js"
],
"preferGlobal": true,
"keywords": [
"cli-app",
"cli",
"weather",
"temperature"
],
"dependencies": {
"axios": "0.21.3",
"chalk": "4.1.0",
"conf": "7.1.1",
"meow": "8.0.0",
"update-notifier": "6.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.0",
"eslint": "7.5.0",
"istanbul": "0.4.5",
"mocha": "8.1.0",
"mocha-lcov-reporter": "1.3.0"
}
}