-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
110 lines (110 loc) · 2.69 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
{
"name": "cursor-history",
"main": "./lib/main",
"version": "0.14.0",
"description": "Cursor position history manager",
"keywords": [
"jumplist",
"history",
"navigation"
],
"repository": "https://github.com/t9md/atom-cursor-history",
"license": "MIT",
"engines": {
"atom": "^1.19.0"
},
"configSchema": {
"max": {
"default": 100,
"minimum": 1,
"description": "number of history to keep",
"order": 0,
"type": "integer"
},
"rowDeltaToRemember": {
"default": 4,
"minimum": 0,
"description": "Save history when row delta was greater than this value",
"order": 1,
"type": "integer"
},
"columnDeltaToRemember": {
"default": 9999,
"minimum": 0,
"description": "Save history when cursor moved within same row and column delta was greater than this value",
"order": 2,
"type": "integer"
},
"excludeClosedBuffer": {
"default": false,
"description": "Don't open closed Buffer on history excursion",
"order": 3,
"type": "boolean"
},
"keepSingleEntryPerBuffer": {
"default": false,
"description": "Keep latest entry only per buffer",
"order": 4,
"type": "boolean"
},
"searchAllPanes": {
"default": true,
"description": "Search existing buffer from all panes before opening new editor",
"order": 5,
"type": "boolean"
},
"openInPendingState": {
"default": false,
"description": "If the target location is not currently opened, open editor in pending-state (preview mode)",
"order": 6,
"type": "boolean"
},
"flashOnLand": {
"default": true,
"description": "flash cursor on land",
"order": 7,
"type": "boolean"
},
"ignoreCommands": {
"default": [
"command-palette:toggle"
],
"items": {
"type": "string"
},
"description": "list of commands to exclude from history tracking.",
"order": 8,
"type": "array"
},
"debug": {
"default": false,
"order": 9,
"type": "boolean"
}
},
"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 spec/*.js"
},
"dependencies": {},
"devDependencies": {
"prettier": "^1.10.2",
"standard": "^10.0.3"
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom"
],
"ignore": [
"spec/fixtures/*"
]
}
}