-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "structure-view",
"main": "./lib/main",
"version": "0.2.1",
"description": "Structure View for ATOM, just like Outline view in Eclipse or Structure tool window in IDEA / WebStorm, provides quick navigation for symbols of source code with a tree view.",
"repository": {
"type": "git",
"url": "/~https://github.com/alibaba/structure-view"
},
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"css": "^2.2.1",
"esprima": "^4.0.0",
"htmlparser2": "^3.9.2",
"jquery": "^3.2.1",
"jsctags": "latest",
"lodash": "^4.17.10",
"vue": "1.0.27-csp"
},
"activationCommands": {
"atom-workspace": [
"structure-view:toggle",
"structure-view:show",
"structure-view:hide"
]
},
"configSchema": {
"ShowVariables": {
"title": "Show Variables",
"description": "If you don't need variables in the structure of file, just uncheck this config.",
"type": "boolean",
"default": true
},
"ShowProperties": {
"title": "Show Properties",
"description": "If you don't need properties in the structure of file (such as CSS), just uncheck this config.",
"type": "boolean",
"default": true
},
"DoubleClickToFoldTreeView": {
"title": "Double Click To Fold Tree View",
"description": "If this value is false, then select tag and toggle the tree view would all by single click.",
"type": "boolean",
"default": true
},
"AutoscrollFromSource": {
"title": "Autoscroll from Source (Beta)",
"description": "Enable this feature to have Atom automatically move the focus in the Structure View to the node that corresponds to the code where the cursor is currently positioned in the editor.",
"type": "boolean",
"default": false
}
},
"keywords": [
"taglist",
"tagbar",
"symbols",
"structure",
"outline",
"navigation",
"ctags"
],
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1"
}
}