forked from AtomLinter/linter-js-yaml
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.26 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
{
"name": "linter-js-cloudformation-yaml",
"version": "2.3.1",
"description": "Linter plugin for YAML, using js-yaml",
"repository": "https://github.com/yyolk/linter-js-cloudformation-yaml.git",
"homepage": "https://github.com/yyolk/linter-js-cloudformation-yaml",
"license": "MIT",
"activationHooks": [
"language-yaml:grammar-used"
],
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"main": "./lib/linter-js-cloudformation-yaml.js",
"scripts": {
"lint": "eslint .",
"test": "apm test"
},
"dependencies": {
"atom-linter": "^8.0.0",
"atom-package-deps": "^4.0.1",
"cloudformation-js-yaml-schema": "0.4.2",
"js-yaml": "^3.5.4"
},
"devDependencies": {
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.1.0"
},
"package-deps": [
"linter"
],
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"global-require": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"atom"
]
}
]
},
"env": {
"node": true
},
"globals": {
"atom": true
}
}
}