-
Notifications
You must be signed in to change notification settings - Fork 251
/
package.json
121 lines (121 loc) · 3.32 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
{
"name": "file-icons",
"main": "lib/main.js",
"version": "2.1.47",
"private": true,
"description": "Assign file extension icons and colours for improved visual grepping",
"repository": "https://github.com/file-icons/atom",
"bugs": "https://github.com/file-icons/atom/issues",
"homepage": "https://github.com/file-icons/atom",
"license": "MIT",
"engines": {
"atom": ">=1.25.0"
},
"atomTestRunner": "atom-mocha",
"dependencies": {
"atom-fs": "v0.2.1",
"lru-cache": "^5.1.1",
"mapped-disposable": "^1.0.3",
"micromatch": "^4.0.2"
},
"devDependencies": {
"@alhadis/eslint-config": "^2.3.3",
"@babel/eslint-parser": "^7.15.0",
"atom-mocha": "^2.2.2",
"coffee-script": "^1.12.7",
"coffeelint": "^2.1.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"get-options": "^1.2.0",
"rimraf": "^3.0.2",
"tmp": "^0.1.0",
"unzipper": "^0.10.8"
},
"scripts": {
"lint": "make lint",
"test": "make test"
},
"providedServices": {
"file-icons.element-icons": {
"versions": {
"1.0.0": "provideService"
}
},
"atom.file-icons": {
"versions": {
"1.0.0": "suppressFOUC"
}
}
},
"configSchema": {
"coloured": {
"type": "boolean",
"default": true,
"description": "Untick this for colourless icons",
"order": 1
},
"onChanges": {
"type": "boolean",
"default": false,
"title": "Only colour when changed",
"description": "Show different icon colours for modified files only. Requires that project be a Git repository.",
"order": 2
},
"tabPaneIcon": {
"type": "boolean",
"default": true,
"title": "Show icons in file tabs",
"order": 3
},
"defaultIconClass": {
"type": "string",
"default": "default-icon",
"title": "Default icon class",
"description": "CSS class added to files that lack an icon.",
"order": 4
},
"strategies": {
"type": "object",
"title": "Match strategies",
"description": "Advanced settings for dynamic icon assignment.",
"order": 5,
"properties": {
"grammar": {
"type": "boolean",
"default": true,
"order": 1,
"title": "Change on grammar override",
"description": "Change a file's icon when manually setting its language."
},
"hashbangs": {
"type": "boolean",
"default": true,
"order": 2,
"title": "Check hashbangs",
"description": "Allow lines like `#!/usr/bin/perl` to affect icons."
},
"modelines": {
"type": "boolean",
"default": true,
"order": 3,
"title": "Check modelines",
"description": "Allow [Vim](https://vim.fandom.com/wiki/Modeline_magic) and [Emacs](https://www.gnu.org/software/emacs/manual/html_node/emacs/Specifying-File-Variables.html#Specifying-File-Variables) modelines to change icons."
},
"usertypes": {
"type": "boolean",
"default": true,
"order": 4,
"title": "Use custom file-types",
"description": "Respect the user's [custom language-type settings](http://flight-manual.atom.io/using-atom/sections/basic-customization/#customizing-language-recognition)."
},
"linguist": {
"type": "boolean",
"default": true,
"order": 5,
"title": "Use .gitattributes",
"description": "Honour [`linguist-language`](https://github.com/github/linguist/blob/master/docs/overrides.md#using-gitattributes) attributes in local `.gitattributes` files."
}
}
}
}
}