-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 853 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
{
"name": "jmate",
"version": "0.0.3",
"description": "A nodejs port of rmate",
"bin": {
"jmate": "./jmate.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jrnewell/jmate.git"
},
"scripts": {
"build": "coffee --compile --output lib src",
"clean": "rm -rf lib",
"prepublish": "coffee --compile --output lib src",
"postpublish": "rm -rf lib"
},
"dependencies": {
"commander": "~2.3.0",
"prompt": "~0.2.14",
"js-yaml": "~3.13.1",
"async": "~0.9.0"
},
"keywords": [
"jmate",
"rmate",
"rsub",
"sublime text",
"textmate",
"ssh",
"remote"
],
"author": "James Newell <james.newell@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrnewell/jmate/issues"
},
"engines": {
"node": ">=0.10",
"npm": ">=1.4"
}
}