-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.18 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
{
"name": "mikaeljorhult.brackets-php-lint-tools",
"title": "PHP Code Quality Tools",
"description": "Analyze and lint PHP using several code analysis tools. Please note that this extension needs PHP to be installed on your machine to work properly.",
"keywords": [
"php",
"codequality",
"phpcs",
"phpcpd",
"phpmd",
"codesniffer",
"messdetector",
"lint",
"linting",
"linter",
"analyze",
"analysis"
],
"homepage": "https://github.com/mikaeljorhult/brackets-php-code-quality-tools",
"version": "0.1.11",
"author": "Mikael Jorhult <[email protected]> (http://jorhult.se)",
"repository": {
"type": "git",
"url": "https://github.com/mikaeljorhult/brackets-php-code-quality-tools"
},
"license": "MIT",
"engines": {
"brackets": ">=0.37.0"
},
"i18n": [
"en",
"fr",
"it",
"sv",
"pt"
],
"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"
}
}