-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 824 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
{
"name": "posix-cat",
"version": "1.1.1",
"description": "A POSIX-like cat in JavaScript",
"main": "index.js",
"bin": {
"cat": "bin/cat"
},
"scripts": {
"test": "node test/test.js",
"test-browser": "zuul -- test/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/shama/ix-cat"
},
"keywords": [
"posix",
"cat"
],
"author": "Kyle Robinson Young <[email protected]> (http://dontkry.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shama/ix-cat/issues"
},
"homepage": "https://github.com/shama/ix-cat",
"dependencies": {
"inherits": "^2.0.1",
"next-tick": "^0.2.2",
"readable-stream": "^1.0.33",
"xtend": "^4.0.0",
"yargs": "^3.3.1"
},
"devDependencies": {
"tape": "^3.5.0",
"zuul": "^2.0.0"
}
}