package.json
856 Bytes
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
{
"name": "prompt",
"version": "1.3.0",
"description": "A beautiful command-line prompt for node.js",
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
"maintainers": [
"indexzero <charlie@nodejitsu.com>",
"jesusabdullah <josh@nodejitsu.com>"
],
"repository": {
"type": "git",
"url": "http://github.com/flatiron/prompt.git"
},
"keywords": [
"prompt",
"command-line",
"customize",
"validation"
],
"dependencies": {
"@colors/colors": "1.5.0",
"async": "3.2.3",
"read": "1.0.x",
"revalidator": "0.1.x",
"winston": "2.x"
},
"devDependencies": {
"eslint": "^7.32.0",
"vows": "^0.7.0"
},
"main": "./lib/prompt",
"scripts": {
"test": "vows test/prompt-test.js --spec",
"test-all": "vows --spec"
},
"license": "MIT",
"engines": {
"node": ">= 6.0.0"
}
}