-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 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
{
"name": "coreutils.js",
"version": "0.0.0",
"description": "Basic command line utilities, the Node.js way",
"main": "lib",
"scripts": {
"coveralls": "easy-coveralls",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/piranna/coreutils.js.git"
},
"keywords": [
"Bash",
"cli",
"shell",
"built-ins"
],
"author": "Jesús Leganés Combarro 'piranna' <piranna@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/piranna/coreutils.js/issues"
},
"homepage": "https://github.com/piranna/coreutils.js",
"bin": {
"cat": "bin/cat.js",
"chroot": "bin/chroot.js",
"date": "bin/date.js",
"dir": "bin/dir.js",
"dirname": "bin/dirname.js",
"echo": "bin/echo.js",
"env": "node_modules/.bin/env",
"grep": "bin/grep.js",
"head": "bin/head.js",
"hostname": "bin/hostname.js",
"ls": "bin/ls.js",
"pwd": "bin/pwd.js",
"sleep": "bin/sleep.js",
"sort": "bin/sort.js",
"tee": "bin/tee.js",
"umask": "bin/umask.js",
"uname": "bin/uname.js",
"yes": "bin/yes.js"
},
"dependencies": {
"argparse": "^1.0.9",
"async": "^2.4.0",
"easy-coveralls": "^0.0.1",
"glob": "^7.1.1",
"inherits": "^2.0.3",
"map-stream": "^0.1.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"node-uname": "^1.0.1",
"ordered-read-streams": "piranna/ordered-read-streams",
"posix": "^4.1.1",
"readline-stream": "^1.0.2",
"string-to-stream": "^1.1.0",
"usrbinenv": "^0.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"concat-stream": "^1.6.0",
"mocha": "^3.3.0"
}
}