forked from danielbrodin/atom-project-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "project-manager",
"main": "./lib/project-manager",
"version": "3.3.7",
"description": "Project Manager for easy access and switching between projects in Atom.",
"repository": "https://github.com/danielbrodin/atom-project-manager",
"license": "MIT",
"keywords": [
"project",
"manager",
"settings",
"workflow",
"productivity"
],
"engines": {
"atom": ">1.4.0"
},
"scripts": {
"test": "apm test && ./node_modules/.bin/eslint lib/**"
},
"dependencies": {
"atom-project-util": "^4.2.0",
"atom-space-pen-views": "^2.0.3",
"change-case": "^3.0.0",
"etch": "^0.8.0",
"findit": "^2.0.0",
"mobx": "^2.6.0",
"season": "^5.4.1",
"tildify": "^1.2.0",
"underscore-plus": "^1.6.6",
"untildify": "^3.0.2"
},
"providedServices": {
"project-manager": {
"description": "Get access to all saved projects",
"versions": {
"3.1.0": "provideProjects"
}
}
},
"configSchema": {
"showPath": {
"type": "boolean",
"default": true
},
"environmentSpecificProjects": {
"type": "boolean",
"default": false
},
"prettifyTitle": {
"type": "boolean",
"default": true,
"description": "Will suggest a prettified project title on save."
},
"savePathsRelativeToHome": {
"type": "boolean",
"default": false,
"description": "Will save paths relative to home path if possible."
},
"sortBy": {
"type": "string",
"description": "Default sorting is the order in which the projects are",
"default": "default",
"enum": [
"default",
"title",
"group",
"last modified"
]
},
"includeGitRepositories": {
"type": "boolean",
"default": false,
"description": "Will search for directories in your `Project Home` that include `.git` and list them."
},
"ignoreDirectories": {
"type": "string",
"default": "node_modules, vendor",
"description": "Comma separated list of directories to skip when looking for git repositories."
},
"alwaysOpenInSameWindow": {
"type": "boolean",
"default": false,
"description": "Will reverse `shift+enter` in the list view to open in a new window."
}
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.3.0"
}
}