forked from enquirer/enquirer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "enquirer",
"description": "Stylish, intuitive and user-friendly prompt system. Fast and lightweight enough for small projects, powerful and extensible enough for the most advanced use cases.",
"version": "2.3.2",
"homepage": "https://github.com/enquirer/enquirer",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
],
"repository": "enquirer/enquirer",
"bugs": {
"url": "https://github.com/enquirer/enquirer/issues"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=8.6"
},
"scripts": {
"test": "mocha && tsc -p ./test/types",
"cover": "nyc --reporter=text --reporter=html mocha"
},
"dependencies": {
"ansi-colors": "^3.2.1"
},
"devDependencies": {
"@types/node": "^8",
"gulp-format-md": "^2.0.0",
"inquirer": "^6.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prompts": "^1.2.1",
"time-require": "github:jonschlinkert/time-require",
"typescript": "^3.1.6"
},
"keywords": [
"answer",
"answers",
"ask",
"base",
"cli",
"command",
"command-line",
"confirm",
"enquirer",
"generator",
"generate",
"hyper",
"input",
"inquire",
"inquirer",
"interface",
"iterm",
"javascript",
"node",
"nodejs",
"prompt",
"prompts",
"promptly",
"question",
"readline",
"scaffold",
"scaffolding",
"scaffolder",
"stdin",
"stdout",
"terminal",
"tty",
"ui",
"yeoman",
"yo",
"zsh"
],
"lintDeps": {
"devDependencies": {
"files": {
"patterns": [
"examples/**/*.js",
"perf/*.js",
"recipes/*.js"
]
}
}
},
"verb": {
"toc": false,
"layout": false,
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"helpers": [
"./docs/helpers.js"
],
"lint": {
"reflinks": true
},
"reflinks": [
"inquirer",
"prompt-skeleton"
]
}
}