-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "@paciolan/eslint-config-react",
"version": "0.0.0-semantic-release",
"description": "",
"author": "Paciolan",
"license": "MIT",
"keywords": [
"eslint",
"eslint-config",
"prettier",
"react"
],
"main": "index.js",
"repository": {
"type": "ssh",
"url": "[email protected]:development/library/javascript/paciolan-eslint-config-react.git"
},
"release": {
"branch": "master",
"repositoryUrl": "[email protected]:development/library/javascript/paciolan-eslint-config-react.git",
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
},
"scripts": {
"cz": "git-cz",
"lint": "eslint ."
},
"dependencies": {
"@paciolan/eslint-config": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"git-cz": "^3.2.1",
"husky": "^3.0.3",
"prettier": "^1.17.1"
},
"peerDependencies": {
"babel-eslint": ">=10",
"eslint": ">=6",
"eslint-config-prettier": ">=6",
"eslint-plugin-babel": ">=5",
"eslint-plugin-prettier": ">=3",
"eslint-plugin-react": ">=7",
"prettier": ">=1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
}
}