summaryrefslogtreecommitdiffstats
path: root/package.json
blob: ba26a0f60c47adfcbcab5682190f819ed6384625 (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
{
  "name": "gtop",
  "version": "1.1.3",
  "description": "graphic top",
  "main": "./index.js",
  "bin": {
    "gtop": "./bin/gtop"
  },
  "scripts": {
    "test": "echo \"Test will be implemented.\" && exit 0",
    "start": "./bin/gtop",
    "lint": "prettier --single-quote --trailing-comma es5 --write 'lib/**/*.js'",
    "lint-check": "prettier --check --single-quote --trailing-comma es5 'lib/**/*.js'",
    "prepublishOnly": "marked-man --version $npm_package_version --manual 'Gtop Help' --section 1 ./CLI.md > gtop.1"
  },
  "man": ["./gtop.1"],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aksakalli/gtop.git"
  },
  "keywords": [
    "system",
    "monitoring",
    "top",
    "chart",
    "monitor",
    "dashboard",
    "os"
  ],
  "author": "aksakalli",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/aksakalli/gtop/issues"
  },
  "homepage": "https://github.com/aksakalli/gtop#readme",
  "dependencies": {
    "blessed": "^0.1.81",
    "blessed-contrib": "^4.10.1",
    "systeminformation": "^5.10.0"
  },
  "engines": {
    "node": ">=4.0.0"
  },
  "devDependencies": {
    "marked-man": "^0.7.0",
    "prettier": "1.19.1"
  }
}