-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.35 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
{
"name": "linter-abaplint",
"version": "0.12.0",
"description": "Atom linter plugin for ABAP, using abaplint",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/larshp/linter-abaplint.git"
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"scripts": {
"test": "eslint ."
},
"keywords": [
"abap"
],
"author": "Lars Hvam Petersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/larshp/linter-abaplint/issues"
},
"homepage": "https://github.com/larshp/linter-abaplint#readme",
"dependencies": {
"abaplint": "^0.29.17",
"atom-package-deps": "^4.6.0"
},
"package-deps": [
"linter",
"language-abap"
],
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-react": "^5.0.1"
},
"eslintConfig": {
"extends": "airbnb/base",
"parser": "babel-eslint",
"globals": {
"atom": true,
"waitsForPromise": true
},
"rules": {
"arrow-body-style": 0,
"prefer-template": 0,
"no-restricted-syntax": 0,
"global-require": 0
},
"env": {
"es6": true,
"node": true
}
},
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
}
}