This repository has been archived by the owner on Mar 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "@strv/eslint-config-javascript",
"description": "Write bulletproof JavaScript like a pro! 😎",
"version": "9.2.0",
"author": "Robert Rossmann <[email protected]>",
"bugs": {
"url": "https://github.com/strvcom/eslint-config-javascript/issues"
},
"contributors": [
"Arnost Pleskot <[email protected]>",
"Daniel Kijkov <[email protected]>",
"Martin Stava <[email protected]>",
"Pavel Poláček <[email protected]>",
"Petr Hanák <[email protected]>",
"Vladimir Vanek <[email protected]>"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^1.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-react": "^7.11.1"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"eslint": "^5.9.0",
"eslint-plugin-flowtype": "^3.2.0",
"remark-cli": "^6.0.1",
"remark-preset-lint-consistent": "^2.0.2",
"remark-preset-lint-markdown-style-guide": "^2.1.2",
"remark-preset-lint-recommended": "^3.0.2"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/strvcom/eslint-config-javascript",
"keywords": [
"coding-standard",
"coding-standards",
"eslint",
"eslint-config",
"eslintconfig",
"ruleset",
"style-guide"
],
"license": "BSD-3-Clause",
"main": "default",
"peerDependencies": {
"eslint": "^5.3.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/strvcom/eslint-config-javascript.git"
},
"scripts": {
"lint": "eslint --cache --report-unused-disable-directives . && remark --quiet .",
"prepare": "utils/install-githooks.sh"
}
}