-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "js-explorer",
"version": "1.1.7",
"author": "sdras",
"description": "A terminal-based resource to help you find js methods without digging through the docs",
"main": "./bin/index.js",
"bin": {
"jsexplorer": "./bin/index.js",
"lookup": "./bin/lookup.js",
"clearlookup": "./bin/clearLookup.js"
},
"scripts": {
"test": "test",
"man": "cd man && marked-man --version 'v1.1.4' --manual 'JS Explorer Help' --section 1 man.md > js-explorer.1"
},
"directories": {
"man": "man"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sdras/js-explorer.git"
},
"keywords": [
"array",
"object",
"javascript",
"terminal"
],
"type": "module",
"preferGlobal": true,
"license": "MIT",
"bugs": {
"url": "https://github.com/sdras/js-explorer/issues"
},
"homepage": "https://github.com/sdras/js-explorer#readme",
"dependencies": {
"boxen": "^5.0.1",
"chalk": "^4.1.1",
"configstore": "^6.0.0",
"figures": "^3.2.0",
"hyperlinker": "^1.0.0",
"indent-string": "^5.0.0",
"inquirer": "^8.1.1",
"marked-man": "^0.7.0",
"minimist": "^1.2.5",
"supports-hyperlinks": "^2.2.0"
}
}