-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
127 lines (127 loc) · 2.92 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "quick-highlight",
"main": "./lib/main",
"version": "0.13.0",
"description": "Highlight text quickly.",
"repository": "https://github.com/t9md/atom-quick-highlight",
"license": "MIT",
"engines": {
"atom": "^1.13.0-beta1"
},
"configSchema": {
"decorate": {
"order": 0,
"type": "string",
"default": "underline",
"enum": [
"underline",
"box",
"highlight"
],
"description": "Decoation style for highlight"
},
"highlightSelection": {
"order": 1,
"type": "boolean",
"default": true,
"title": "Highlight Selection"
},
"highlightSelectionMinimumLength": {
"order": 2,
"type": "integer",
"default": 2,
"minimum": 1,
"description": "Minimum length of selection to be highlight"
},
"highlightSelectionExcludeScopes": {
"order": 3,
"default": [
"vim-mode-plus.visual-mode.blockwise"
],
"type": "array",
"items": {
"type": "string"
}
},
"highlightSelectionDelay": {
"order": 4,
"type": "integer",
"default": 100,
"description": "Delay(ms) before start to highlight selection when selection changed"
},
"displayCountOnStatusBar": {
"order": 5,
"type": "boolean",
"default": true,
"description": "Show found count on StatusBar"
},
"countDisplayPosition": {
"order": 6,
"type": "string",
"default": "Left",
"enum": [
"Left",
"Right"
]
},
"countDisplayPriority": {
"order": 7,
"type": "integer",
"default": 120,
"description": "Lower priority get closer position to the edges of the window"
},
"countDisplayStyles": {
"order": 8,
"type": "string",
"default": "icon icon-location",
"description": "Style class for count span element. See `styleguide:show`."
}
},
"providedServices": {
"quick-highlight": {
"description": "quick-highlight events",
"versions": {
"1.0.0": "provideQuickHighlight"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"vim-mode-plus": {
"versions": {
"^0.1.0": "consumeVim"
}
}
},
"dependencies": {
"underscore-plus": "^1.6.6"
},
"devDependencies": {
"prettier": "^1.10.2",
"standard": "^10.0.3"
},
"scripts": {
"test": "apm test",
"watch": "fswatch -0 spec lib | xargs -0 -n1 -I{} apm test",
"prettier": "prettier --write --no-semi --print-width=120 --no-bracket-spacing --trailing-comma=es5 'lib/**/*.js' 'spec/*.js'",
"lint": "standard lib/*.js lib/**/*.js spec/*.js"
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom"
],
"ignore": [
"spec/fixtures/*"
]
}
}