-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1019 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
47
48
49
50
{
"name": "node-fzf",
"version": "0.13.1",
"description": "fzf ( junegunn/fzf ) inspired cli utility for node",
"main": "src/main.js",
"bin": {
"nfzf": "bin/cli.js"
},
"files": [
"bin/cli.js",
"src/main.js",
"usage.txt"
],
"scripts": {
"test": "tape test/test.js"
},
"keywords": [
"node-fzf",
"fzf",
"fuzzy",
"list",
"search",
"cli"
],
"author": "talmobi <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/talmobi/node-fzf"
},
"bugs": {
"url": "https://github.com/talmobi/node-fzf/issues",
"email": "[email protected]"
},
"dependencies": {
"cli-color": "~1.2.0",
"keypress": "~0.2.1",
"minimist": "~1.2.5",
"redstar": "0.0.2",
"restore-cursor": "~3.1.0",
"string-width": "~2.1.1",
"ttys": "0.0.3",
"window-size": "~1.1.1"
},
"devDependencies": {
"mock-stdin": "~1.0.0",
"tape": "~4.13.0"
}
}