forked from tldr-pages/tldr-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "tldr",
"version": "3.2.7",
"description": "Simplified and community-driven man pages",
"author": "Romain Prieto",
"license": "MIT",
"repository": "tldr-pages/tldr-node-client",
"keywords": [
"man",
"unix",
"linux",
"osx",
"commands",
"command-line",
"shell",
"bash",
"zsh"
],
"homepage": "http://tldr-pages.github.io",
"engines": {
"node": ">=6.12.0"
},
"main": "bin/tldr",
"files": [
"bin",
"config.json",
"lib",
"LICENSE.md"
],
"bin": {
"tldr": "./bin/tldr"
},
"preferGlobal": true,
"directories": {
"test": "test"
},
"scripts": {
"start": "node ./bin/tldr",
"example": "node ./bin/tldr tar",
"test": "mocha test --require=env-test",
"test:quiet": "npm test --reporter=dot",
"lint": "eslint lib test bin/tldr",
"watch": "mocha test --require=env-test --reporter=min --watch --growl",
"test:functional": "bash test/functional-test.sh",
"test:all": "npm run lint && npm test && npm run test:functional"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"lodash": "^4.17.13",
"marked": "^0.6.2",
"ms": "^2.1.2",
"natural": "^0.6.3",
"node-unzip-2": "^0.2.8",
"ora": "^3.4.0",
"os-homedir": "^2.0.0",
"request": "^2.88.0"
},
"devDependencies": {
"env-test": "^1.0.0",
"eslint": "^5.16.0",
"husky": "^2.4.1",
"mocha": "^6.1.4",
"should": "^13.2.3",
"sinon": "^7.3.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test:quiet"
}
}
}