-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
67 lines (67 loc) · 1.38 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ipt",
"version": "3.2.0",
"description": "iPipeTo - The Node.js cli interactive workflow",
"repository": "ruyadorno/ipt",
"author": {
"name": "Ruy Adorno",
"url": "ruyadorno.com",
"twitter": "ruyadorno"
},
"bin": {
"ipt": "src/cli.js"
},
"main": "src/index.js",
"man": "./man/man1/ipt.1",
"engines": {
"node": ">=10"
},
"scripts": {
"pretest": "eslint src/*.js",
"test": "ava --tap",
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags"
},
"files": [
"src",
"man"
],
"keywords": [
"ipipeto",
"pipe",
"interactive",
"list",
"inquirer",
"unix",
"terminal",
"workflow",
"cli-app",
"cli",
"ipt",
"menu"
],
"dependencies": {
"cli-width": "^3.0.0",
"clipboardy": "^2.3.0",
"extract-path": "^2.0.0",
"fuzzysearch": "^1.0.3",
"get-stdin": "^8.0.0",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt-ipt": "^2.0.0",
"inquirer-ordinal-prompt": "^1.0.0",
"reopen-tty": "^1.1.2",
"string-width": "~4.2.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"lodash.template": "^4.5.0",
"mock-require": "^3.0.1",
"prettier": "^2.2.1",
"tempfile": "^3.0.0"
},
"license": "MIT"
}