-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.14 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
{
"name": "vcgrep",
"description": "File content search tool based on regular expression capture groups with simple terminal visualization.",
"version": "0.3.0",
"homepage": "https://github.com/jonesd/vcgrep",
"author": {
"name": "David Jones",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/jonesd/vcgrep.git"
},
"bugs": {
"url": "https://github.com/jonesd/vcgrep/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jonesd/vcgrep/blob/master/LICENSE"
}
],
"main": "lib/api.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "mocha -R spec ./test"
},
"keywords": [
"grep",
"file"
],
"preferGlobal": "true",
"bin": {
"vcgrep": "lib/vcgrep.js"
},
"dependencies": {
"ansi": "^0.3.0",
"axel": "0.0.3",
"linebyline": "0.0.7",
"matchstick": "^0.7.5",
"pkginfo": "^0.3.0",
"shelljs": "^0.3.0",
"underscore": "^1.7.0",
"yargs": "^2.1.1"
},
"devDependencies": {
"mocha": "^2.1.0",
"sandboxed-module": "^2.0.0",
"should": "^5.0.0",
"sinon": "^1.12.2"
}
}