-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.06 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
{
"name": "line-ending-selector",
"version": "0.7.7",
"main": "./lib/main",
"description": "Select the line ending to use for the current editor.",
"license": "MIT",
"repository": "https://github.com/atom/atom",
"engines": {
"atom": "^1.0.0"
},
"dependencies": {
"atom-select-list": "^0.7.0",
"underscore-plus": "^1.7.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"devDependencies": {
"standard": "^5.1.0"
},
"configSchema": {
"defaultLineEnding": {
"title": "Default line ending",
"description": "Line ending to use for new files",
"type": "string",
"default": "OS Default",
"enum": [
"OS Default",
"LF",
"CRLF"
]
}
},
"standard": {
"globals": [
"advanceClock",
"atom",
"beforeEach",
"expect",
"describe",
"it",
"jasmine",
"MouseEvent",
"runs",
"spyOn",
"waits",
"waitsFor",
"waitsForPromise"
]
}
}