This repository has been archived by the owner on Dec 7, 2017. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 2.6 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
112
113
114
115
116
117
118
119
120
121
122
{
"name": "question-cache",
"description": "A wrapper around inquirer that makes it easy to create and selectively reuse questions.",
"version": "0.7.0",
"homepage": "https://github.com/jonschlinkert/question-cache",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward <[email protected]> (https://github.com/doowb)",
"Jon Schlinkert <[email protected]> (http://twitter.com/jonschlinkert)"
],
"repository": "jonschlinkert/question-cache",
"bugs": {
"url": "https://github.com/jonschlinkert/question-cache/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"arr-flatten": "^1.0.1",
"arr-union": "^3.1.0",
"async-each-series": "^1.1.0",
"clone-deep": "^0.2.4",
"debug": "^2.2.0",
"define-property": "^0.2.5",
"extend-shallow": "^2.0.1",
"get-value": "^2.0.6",
"has-value": "^0.3.1",
"inquirer2": "^0.1.1",
"is-answer": "^0.1.0",
"isobject": "^2.1.0",
"lazy-cache": "^2.0.1",
"log-utils": "^0.2.1",
"mixin-deep": "^1.1.3",
"omit-empty": "^0.4.1",
"option-cache": "^3.4.0",
"project-name": "^0.2.6",
"set-value": "^0.3.3",
"to-choices": "^0.2.0",
"use": "^2.0.0"
},
"devDependencies": {
"ansi-green": "^0.1.1",
"ansi-red": "^0.1.1",
"bdd-stdin": "^0.2.0",
"data-store": "^0.16.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-format-md": "^0.1.10",
"gulp-istanbul": "^1.1.0",
"gulp-mocha": "^3.0.1",
"gulp-unused": "^0.1.2",
"helper-example": "^0.1.0",
"intercept-stdout": "^0.1.2",
"mocha": "^3.0.2"
},
"keywords": [
"answer",
"ask",
"cache",
"cli",
"command",
"command-line",
"console",
"create",
"generate",
"generator",
"generators",
"init",
"inquirer",
"menu",
"project",
"prompt",
"prompts",
"question",
"questions",
"scaffold",
"stdin",
"store",
"terminal",
"tty",
"util",
"yeoman"
],
"verb": {
"run": true,
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"ask-for-github-auth",
"ask-once",
"generate",
"question-helper"
]
},
"reflinks": [
"generate",
"inquirer2",
"verb",
"verb-generate-readme",
"yeoman"
],
"lint": {
"reflinks": true
},
"helpers": [
"helper-example"
]
}
}