forked from nicksrandall/inquirer-directory
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "inquirer-file-path",
"version": "1.0.1",
"description": "a file (relative to given path) selector for Inquirer.js",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/_mocha test/spec",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmbarker90/inquirer-file-path.git"
},
"keywords": [
"Inquirer",
"file",
"prompt",
"file picker"
],
"author": "Ben Barker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bmbarker90/inquirer-file-path/issues"
},
"homepage": "https://github.com/bmbarker90/inquirer-file-path#readme",
"dependencies": {
"chalk": "^1.1.1",
"cli-cursor": "^1.0.2",
"figures": "^1.4.0",
"inquirer": "^1.1.3",
"lodash": "^3.10.1",
"rx-lite": "^4.0.8",
"util": "^0.10.3"
},
"devDependencies": {
"chai": "^3.4.1",
"events": "^1.1.0",
"mocha": "^2.3.4",
"mock-fs": "^3.5.0",
"sinon": "^1.17.2"
}
}