forked from Munkei/atom-linter-cppcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 955 Bytes
/
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
{
"activationCommands": {},
"author": {
"name": "Theo ‘Biffen’ Willows",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Munkei/atom-linter-cppcheck/issues"
},
"contributors": [],
"dependencies": {
"atom-linter": "^8.0.0"
},
"description": "A linter for Atom using Cppcheck",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"eslintConfig": {
"env": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
}
},
"homepage": "https://github.com/Munkei/atom-linter-cppcheck",
"keywords": [
"c",
"c++",
"linter"
],
"license": "MIT",
"main": "./lib/linter-cppcheck",
"name": "linter-cppcheck",
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/Munkei/atom-linter-cppcheck"
},
"version": "0.2.3"
}