summaryrefslogtreecommitdiffstats
path: root/package.json
blob: 978eb7b7527b00c59b482c3f27ec2cc00a5ea045 (plain)
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
{
  "name": "weather-cli",
  "version": "1.3.3",
  "description": "Check the weather for your city from your terminal",
  "license": "MIT",
  "repository": "riyadhalnur/weather-cli",
  "main": "index.js",
  "author": {
    "name": "Riyadh Al Nur",
    "email": "riyadhalnur@verticalaxisbd.com",
    "url": "https://verticalaxisbd.com"
  },
  "bin": {
    "weather": "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": [
    "index.js",
    "cli.js"
  ],
  "preferGlobal": true,
  "keywords": [
    "cli-app",
    "cli",
    "weather",
    "temperature"
  ],
  "dependencies": {
    "axios": "0.19.0",
    "chalk": "2.4.2",
    "conf": "5.0.0",
    "meow": "5.0.0",
    "update-notifier": "3.0.1"
  },
  "devDependencies": {
    "chai": "4.2.0",
    "chai-as-promised": "7.1.1",
    "coveralls": "3.0.6",
    "eslint": "6.1.0",
    "istanbul": "0.4.5",
    "mocha": "6.2.0",
    "mocha-lcov-reporter": "1.3.0"
  }
}