This repository has been archived by the owner on Jun 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.73 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
{
"name": "eslint-config-vyorkin",
"version": "0.0.0-development",
"description": "ESLint rules according to vyorkin's personal preference",
"main": "index.js",
"repository": {
"url": "https://github.com/vyorkin-personal/eslint-config-vyorkin.git",
"type": "git"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"vyorkin",
"javascript",
"styleguide"
],
"author": "Vasiliy Yorkin <[email protected]> (https://github.com/vyorkin)",
"license": "WTFPL",
"scripts": {
"commit": "git-cz",
"lint": "eslint .",
"test": "npm run lint",
"commitmsg": "validate-commit-msg",
"precommit": "npm t",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"eslint": "3.11.1"
},
"devDependencies": {
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"eslint": "3.11.1",
"eslint-find-rules": "^1.14.3",
"husky": "^0.11.9",
"npm-run-all": "^3.1.1",
"semantic-release": "^6.3.2",
"validate-commit-msg": "^2.8.2"
},
"dependencies": {
"babel-eslint": "^7.1.1",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-eslint-comments": "^1.0.0",
"eslint-plugin-flowtype": "^2.28.2",
"eslint-plugin-fp": "^2.2.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "6.7.1",
"eslint-plugin-security": "^1.2.0",
"eslint-plugin-tape": "^1.1.0"
}
}