forked from saurabhdaware/projectman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.4 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": "projectman",
"version": "2.0.0",
"description": "Hate opening folders? Select and open your projects in your favourite editor straight from your command line without 'CD'ing into the deeply nested folders.",
"main": "bin/index.js",
"bin": {
"projectman": "bin/index.js",
"pm": "bin/index.js"
},
"preferGlobal": true,
"scripts": {
"test": "jest",
"build": "pkg ./package.json --out-path ./dist || echo '\nPlease first `npm install -g pkg` to run this command'",
"eslint": "eslint lib bin",
"prettier": "prettier lib bin --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saurabhdaware/projectman.git"
},
"keywords": [
"project-manager",
"projectman",
"open-projects",
"projectmanager",
"congifure-projects"
],
"author": "Saurabh Daware <[email protected]> (https://saurabhdaware.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/saurabhdaware/projectman/issues"
},
"homepage": "https://github.com/saurabhdaware/projectman#readme",
"dependencies": {
"commander": "^3.0.1",
"didyoumean": "^1.2.1",
"gitignore-parser": "^0.0.2",
"prompts": "^2.3.0"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^27.2.0",
"prettier": "^2.0.5"
}
}