-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.61 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
{
"name": "@thc/eslint-config-react",
"version": "1.0.0",
"description": "Eslint config, for React project",
"main": "index.js",
"scripts": {
"pre-release": "standard-version",
"pre-release-alpha": "standard-version --prerelease alpha",
"pre-release-beta": "standard-version --prerelease beta",
"release": "npm publish --access public && conventional-github-releaser -p angular && git push --follow-tags origin master",
"release-alpha": "npm publish --tag alpha --access public && conventional-github-releaser -p angular && git push --follow-tags origin master",
"release-beta": "npm publish --tag beta --access public && conventional-github-releaser -p angular && git push --follow-tags origin master",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thc-tools/eslint-config-react.git"
},
"keywords": [
"thc",
"eslint",
"react"
],
"author": "THC-Tools",
"license": "MIT",
"bugs": {
"url": "https://github.com/thc-tools/eslint-config-react/issues"
},
"homepage": "https://github.com/thc-tools/eslint-config-react#readme",
"devDependencies": {
"conventional-github-releaser": "3.1.5",
"standard-version": "9.0.0"
},
"dependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.13.0",
"eslint-import-resolver-webpack": "0.13.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-react": "7.21.5"
}
}