-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 949 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 949 Bytes
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": "copy_diff",
"description": "Take file diffs as input and copy or print modified files.",
"version": "0.2.0",
"homepage": "https://github.com/miningold/copy_diff",
"author": {
"name": "Tylor Reynolds",
"email": "rynldsrap@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/miningold/copy_diff.git"
},
"bugs": {
"url": "https://github.com/miningold/copy_diff/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/miningold/copy_diff/blob/master/LICENSE-MIT"
}
],
"main": "copy_diff",
"engines": {
"node": ">= 0.8.0"
},
"keywords": [
"copy",
"modified",
"diff",
"version control",
"files",
"modified files",
"git"
],
"dependencies": {
"mkdirp": "~0.3.5",
"optimist": "~0.6.0",
"event-stream": "~3.0.20"
},
"preferGlobal": "true",
"bin": {
"copy_diff": "bin/copy_diff.js"
}
}