forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 956 Bytes
/
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
{
"name": "tldr",
"version": "0.0.6",
"description": "Simplified and community-driven man pages",
"author": "Romain Prieto",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rprieto/tldr.git"
},
"keywords": [
"man",
"unix",
"commands"
],
"main": "./bin/tldr",
"bin": {
"tldr": "./bin/tldr"
},
"directories": {
"test": "test"
},
"scripts": {
"start": "NODE_ENV=development node server.js",
"example": "NODE_ENV=development node ./bin/tldr tar",
"test": "./node_modules/.bin/mocha"
},
"dependencies": {
"ansicolors": "~0.3.2",
"ansistyles": "~0.1.3",
"async": "~0.2.9",
"commander": "~2.1.0",
"markit": "~0.1.0",
"mkdirp": "~0.3.5",
"ms": "~0.6.2",
"request": "~2.34.0",
"rimraf": "~2.2.6",
"unhtml": "~0.1.0"
},
"devDependencies": {
"connect": "~2.11.2",
"mocha": "~1.15.1",
"should": "~2.1.1"
}
}