forked from JetBrains/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "@jetbrains/eslint-config",
"version": "3.0.2",
"description": "JetBrains config for ESLint",
"author": "JetBrains",
"license": "Apache-2.0",
"main": "base.js",
"files": [
"*.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JetBrains/eslint-config.git"
},
"keywords": [
"eslint",
"eslintconfig",
"jetbrains"
],
"dependencies": {
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-angular": "^3.0.0",
"eslint-plugin-bdd": "^2.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.1.0"
},
"devDependencies": {
"ci-publish": "^1.3.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"standard-version": "^4.0.0"
},
"peerDependencies": {
"eslint": ">=4.2.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"commit": "git-cz",
"release:ci": "standard-version && git push --follow-tags origin master && ci-publish"
}
}