forked from atom/find-and-replace
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
{
"name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
"version": "0.193.0",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
"project-find:show",
"project-find:toggle",
"project-find:show-in-current-directory",
"find-and-replace:show",
"find-and-replace:toggle",
"find-and-replace:find-next",
"find-and-replace:find-previous",
"find-and-replace:find-next-selected",
"find-and-replace:find-previous-selected",
"find-and-replace:use-selection-as-find-pattern",
"find-and-replace:show-replace",
"find-and-replace:replace-next",
"find-and-replace:replace-all",
"find-and-replace:select-next",
"find-and-replace:select-all"
]
},
"repository": "https://github.com/atom/find-and-replace",
"engines": {
"atom": "*"
},
"dependencies": {
"atom-space-pen-views": "^2.1.0",
"fs-plus": "2.x",
"temp": "0.8.1",
"underscore-plus": "1.x"
},
"devDependencies": {
"coffeelint": "^1.9.7"
}
}