-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 993 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
46
{
"name": "tailr",
"description": "allows tailing remote files",
"version": "0.3.0",
"homepage": "https://github.com/elentok/tailr",
"author": {
"name": "David Elentok",
"email": "3david@gmail.com",
"url": "http://www.elentok.com"
},
"bin": {
"tailr": "./bin/tailr"
},
"repository": {
"type": "git",
"url": "git://github.com/elentok/tailr.git"
},
"bugs": {
"url": "https://github.com/elentok/tailr/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/elentok/tailr/blob/master/LICENSE-MIT"
}
],
"main": "lib/tailr.coffee",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script --reporter spec"
},
"dependencies": {
"nomnom": "1.5.x",
"cli-color": "0.2.x",
"ssh2": "0.2.5",
"coffee-script": "1.4.x"
},
"devDependencies": {
"mocha": "1.8.x",
"chai": "1.5.x",
"sinon": "1.5.x",
"sinon-chai": "2.3.x"
}
}