-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 810 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 810 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
{
"name": "switchd",
"version": "0.0.6",
"description": "A cli tool that helps to switch between workspaces on the fly 🚀",
"main": "index.js",
"bin": {
"switch": "./src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write ./src/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/junip/switch"
},
"keywords": [
"CLI",
"switch",
"change",
"directory"
],
"author": "Junip Dewan <junipd2@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.0.0",
"configstore": "^5.0.0",
"fuzzy": "^0.1.3",
"inquirer": "^7.0.0",
"inquirer-autocomplete-prompt": "^1.0.1"
},
"devDependencies": {
"prettier": "^1.19.0"
}
}