-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "hirse.brackets-detect-indentation",
"title": "Brackets Detect Indentation",
"version": "1.1.0",
"description": "Detects the indentation used in the current document and sets the editor settings accordingly.",
"engines": {
"brackets": ">=1.11.0"
},
"homepage": "https://github.com/hirse/brackets-detect-indentation",
"repository": "Hirse/brackets-detect-indentation",
"bugs": "https://github.com/Hirse/brackets-detect-indentation/issues",
"author": "Jan Pilzer (https://github.com/Hirse)",
"license": "MIT",
"categories": "editing",
"keywords": [
"indentation",
"detect",
"automatic"
],
"i18n": [
"en",
"de"
],
"package-i18n": {
"de": {
"description": "Ermittelt die Einrückung der gegenwärtigen Datei und stell den Editor entsprechend ein."
}
},
"dependencies": {
"detect-indent": "6.0.0"
},
"devDependencies": {
"eslint": "7.x.x",
"tar-to-zip": "3.x.x"
},
"scripts": {
"bundle:win": "npm pack && tar2zip %npm_package_name%-%npm_package_version%.tgz",
"lint": "eslint .",
"test": "npm run lint"
}
}