-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "mrlinter",
"version": "1.0.0",
"description": "PEP8 and ESLint reviewers to github PR's",
"engines": {
"node": "6.2.1"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VladimirRubin/mrLinter.git"
},
"keywords": [
"pep8",
"eslint",
"javascript",
"code",
"quality"
],
"author": "Vladimir Rubin",
"license": "MIT",
"bugs": {
"url": "https://github.com/VladimirRubin/mrLinter/issues"
},
"homepage": "https://github.com/VladimirRubin/mrLinter#readme",
"dependencies": {
"babel-eslint": "^7.1.1",
"body-parser": "^1.16.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"express": "^4.14.0",
"express-request-id": "^1.3.0",
"lodash": "^4.17.4",
"parse-diff": "^0.4.0",
"request": "^2.79.0"
}
}