-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
57 lines (57 loc) · 1.29 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
{
"name": "advanced-open-file",
"version": "0.16.8",
"main": "./lib/advanced-open-file",
"description": "Open and create files and directories easily. Type in a path (with autocomplete) and view directory contents.",
"scripts": {
"shell": "babel-node -r 0"
},
"activationCommands": {
"atom-workspace": [
"advanced-open-file:toggle"
]
},
"consumedServices": {
"file-icons.element-icons": {
"versions": {
"1.0.0": "consumeElementIcons"
}
}
},
"providedServices": {
"advanced-open-file-events": {
"description": "Listen to events triggered when users open or create paths using advanced-open-file.",
"versions": {
"0.1.0": "provideEventService"
}
}
},
"keywords": [
"atom",
"open",
"file",
"create",
"new"
],
"repository": "https://github.com/Osmose/advanced-open-file",
"license": "MIT",
"engines": {
"atom": ">=1.0.8"
},
"dependencies": {
"event-kit": "^1.3.0",
"fuzzaldrin-plus": "^0.3.1",
"mkdirp": "^0.5.1",
"minimatch": "^3.0.4",
"osenv": "^0.1.3",
"touch": "^1.0.0",
"stringmap": "~0.2.2"
},
"devDependencies": {
"babel": "^5.8.35",
"babel-eslint": "^5.0.0",
"eslint": "^1.10.3",
"jquery": "^3.3.1",
"temp": "^0.8.3"
}
}