UNPKG

1.64 kBJSONView Raw
1{
2 "name": "tldr",
3 "version": "3.2.2",
4 "description": "Simplified and community-driven man pages",
5 "author": "Romain Prieto",
6 "license": "MIT",
7 "repository": "tldr-pages/tldr-node-client",
8 "keywords": [
9 "man",
10 "unix",
11 "linux",
12 "osx",
13 "commands",
14 "command-line",
15 "shell",
16 "bash",
17 "zsh"
18 ],
19 "homepage": "http://tldr-pages.github.io",
20 "engines": {
21 "node": ">=6.12.0"
22 },
23 "main": "bin/tldr",
24 "files": [
25 "bin",
26 "config.json",
27 "lib",
28 "LICENSE.md"
29 ],
30 "bin": {
31 "tldr": "./bin/tldr"
32 },
33 "preferGlobal": true,
34 "directories": {
35 "test": "test"
36 },
37 "scripts": {
38 "precommit": "npm run lint && npm run test:quiet",
39 "prepush": "npm run test:quiet",
40 "start": "node ./bin/tldr",
41 "example": "node ./bin/tldr tar",
42 "test": "mocha test --require=env-test",
43 "test:quiet": "npm test --reporter=dot",
44 "lint": "eslint lib test bin/tldr",
45 "watch": "mocha test --require=env-test --reporter=min --watch --growl",
46 "test:functional": "bash test/functional-test.sh",
47 "test:all": "npm run lint && npm test && npm run test:functional"
48 },
49 "dependencies": {
50 "chalk": "^2.3.0",
51 "commander": "^2.9.0",
52 "fs-extra": "^4.0.2",
53 "glob": "^7.1.2",
54 "lodash": "^4.17.4",
55 "marked": "^0.3.9",
56 "ms": "^2.0.0",
57 "natural": "^0.5.6",
58 "node-unzip-2": "^0.2.7",
59 "ora": "^2.0.0",
60 "os-homedir": "^1.0.1",
61 "request": "^2.75.0"
62 },
63 "devDependencies": {
64 "env-test": "^1.0.0",
65 "eslint": "^4.6.1",
66 "husky": "^0.14.3",
67 "mocha": "^4.0.1",
68 "should": "^13.0.1",
69 "sinon": "^4.1.2"
70 }
71}