forked from tldr-pages/tldr-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.94 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
76
77
78
79
80
{
"name": "tldr",
"version": "1.6.0",
"description": "Simplified and community-driven man pages",
"author": "Romain Prieto",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tldr-pages/tldr-node-client.git"
},
"bugs": {
"url": "https://github.com/tldr-pages/tldr-node-client/issues"
},
"keywords": [
"man",
"unix",
"linux",
"osx",
"commands",
"command-line",
"shell",
"bash",
"zsh"
],
"homepage": "http://tldr-pages.github.io",
"engines": {
"node": ">=0.10.0"
},
"main": "./bin/tldr",
"bin": {
"tldr": "./bin/tldr"
},
"preferGlobal": true,
"directories": {
"test": "test"
},
"scripts": {
"precommit": "npm run lint && npm run test:quiet",
"prepush": "npm run test:quiet",
"postinstall": "node ./bin/tldr --update",
"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": "~1.1.1",
"commander": "~2.9.0",
"lodash.compact": "~3.0.0",
"lodash.defaults": "~4.0.1",
"lodash.get": "~4.1.2",
"lodash.identity": "~3.0.0",
"lodash.isempty": "~4.1.3",
"lodash.last": "~3.0.0",
"lodash.map": "~4.2.0",
"lodash.memoize": "~4.0.1",
"lodash.partial": "~4.1.2",
"lodash.sample": "~4.1.0",
"lodash.unescape": "~4.0.0",
"marked": "~0.3.5",
"ms": "~0.7.1",
"os-homedir": "~1.0.1",
"request": "~2.69.0",
"rimraf": "~2.5.0",
"unzip2": "~0.2.5",
"wrench": "~1.5.8"
},
"devDependencies": {
"env-test": "*",
"eslint": "*",
"husky": "*",
"mocha": "*",
"should": "*",
"sinon": "*"
}
}