-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
executable file
·85 lines (85 loc) · 3.23 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
{
"name": "hirse.outline-list",
"version": "1.6.0",
"title": "Outline List",
"description": "Displays a list of the functions or definitions in the currently opened document. Works with CSS, CoffeeScript, HTML, Haxe, Jade, JavaScript, JSX, LESS, Markdown, PHP, Python, Ruby, SCSS, SVG, Stylus, and XML.",
"engines": {
"brackets": ">=1.8.0"
},
"homepage": "https://github.com/Hirse/brackets-outline-list",
"repository": "Hirse/brackets-outline-list",
"author": "Jan Pilzer (https://github.com/Hirse)",
"license": "MIT",
"keywords": [
"brackets-extension",
"outline",
"CSS",
"CoffeeScript",
"HTML",
"Haxe",
"Jade",
"JavaScript",
"JSX",
"LESS",
"Markdown",
"PHP",
"Python",
"Ruby",
"SCSS",
"SVG",
"Stylus",
"XML"
],
"i18n": [
"ar",
"de",
"en",
"es",
"fr",
"ja",
"pl"
],
"package-i18n": {
"ar": {
"description": " CSS, CoffeeScript, HTML, Haxe, Jade, JavaScript, JSX, LESS, Markdown, PHP, Python, Ruby, SCSS, SVG, Stylus, and XML.يعرض قائم بالوظائف أو التعريفات في الوثيقة المفتوحة حاليا ، يعمل مع لغة"
},
"de": {
"description": "Zeigt eine Liste der Funktionen oder Definitionen im geöffneten Dokument. Unterstützt CSS, CoffeeScript, HTML, Haxe, Jade, JavaScript, JSX, LESS, Markdown, PHP, Python, Ruby, SCSS, SVG, Stylus, und XML."
},
"es": {
"description": "Muestra una lista con las funciones o definiciones del documento actualmente abierto. Funciona con CSS, CoffeeScript, HTML, Haxe, Jade, JavaScript, JSX, LESS, Markdown, PHP, Python, Ruby, SCSS, SVG, Stylus, y XML."
},
"fr": {
"description": "Affiche une liste des fonctions ou définition du document ouvert actuellement. Fonctionne avec CSS, CoffeeScript, HTML, Haxe, Jade, JavaScript, JSX, LESS, Markdown, PHP, Python, Ruby, SCSS, SVG, Stylus, et XML."
},
"ja": {
"description": "現在開いているドキュメントの関数または定義の一覧を表示する。CSS, CoffeeScript, HTML, Haxe, Jade, JavaScript, JSX, LESS, Markdown, PHP, Python, Ruby, SCSS, SVG, Stylus, と XML に対応。"
},
"pl": {
"description": "Wyświetla listę funkcji lub definicji w aktualnie otwartym dokumencie. Działa z CSS, CoffeeScript, HTML, Haxe, Jade, JavaScript, JSX, LESS, Markdown, PHP, Python, Ruby, SCSS, SVG, Stylus, i XML."
}
},
"devDependencies": {
"csslint": "1.x.x",
"eslint": "8.x.x",
"htmlhint": "1.x.x",
"jasmine-core": "5.x.x",
"jsdom": "22.x.x",
"karma": "6.x.x",
"karma-chrome-launcher": "3.x.x",
"karma-coverage": "2.x.x",
"karma-jasmine": "5.x.x",
"karma-jsdom-launcher": "15.x.x",
"karma-requirejs": "1.x.x",
"requirejs": "2.x.x",
"requirejs-text": "2.x.x",
"tar-to-zip": "3.x.x"
},
"scripts": {
"lint": "eslint . && htmlhint -c .htmlhintrc templates && csslint --config=.csslintrc styles",
"pretest": "npm run lint",
"test": "karma start --browsers jsdom --single-run",
"bundle": "npm pack && tar2zip hirse.outline-list-%npm_package_version%.tgz",
"bundleBuild": "npm pack && tar2zip hirse.outline-list-$npm_package_version.tgz"
}
}