-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
executable file
·53 lines (53 loc) · 1.37 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
{
"name": "mikaeljorhult.brackets-autoprefixer",
"title": "Autoprefixer",
"description": "Parse CSS and add vendor prefixes automatically.",
"homepage": "https://github.com/mikaeljorhult/brackets-autoprefixer",
"version": "0.7.5",
"author": "Mikael Jorhult <mikael@jorhult.se> (http://jorhult.se)",
"repository": {
"type": "git",
"url": "https://github.com/mikaeljorhult/brackets-autoprefixer"
},
"license": "MIT",
"engines": {
"brackets": ">=0.37.0"
},
"i18n": [
"de",
"en",
"es",
"fr",
"gl",
"it",
"sv",
"uk",
"ru",
"pl"
],
"package-i18n": {
"it": {
"description": "Aggiunge automaticamente i prefissi dei browser al CSS."
},
"sv": {
"description": "Går igenom din CSS-kod och lägger till webbläsarprefix automatiskt."
},
"ru": {
"description": "Парсит CSS и добавляет закрывающие коды автоматически."
},
"pl": {
"description": "Parsuj CSS i dodawaj prefiksy dostawców automatycznie."
}
},
"scripts": {
"test": "./node_modules/.bin/eslint . --ext .js"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}