summaryrefslogtreecommitdiffstats
path: root/package.json
blob: 2ba44e601b66a8603fe1b940d8104934d8c15834 (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.0",
  "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": ">=4"
  },
  "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.18.0",
    "chalk": "2.3.1",
    "conf": "2.0.0",
    "meow": "4.0.1",
    "update-notifier": "2.4.0"
  },
  "devDependencies": {
    "chai": "4.1.2",
    "chai-as-promised": "7.1.1",
    "coveralls": "3.0.1",
    "eslint": "4.17.0",
    "istanbul": "0.4.5",
    "mocha": "5.0.1",
    "mocha-lcov-reporter": "1.3.0"
  }
}