-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@colorfy-software/eslint-config",
"version": "0.5.1",
"description": "ESLint config used at Colorfy GmbH",
"main": "react-native.js",
"files": [
"index.js",
"package.json",
"README.md"
],
"scripts": {
"test": "echo \"TODO: Write tests\" && exit 0",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colorfy-software/eslint-config.git"
},
"keywords": [
"typescript",
"javascript",
"eslint",
"eslintconfig"
],
"author": "Charles Mangwa <[email protected]> (https://github.com/CharlesMangwa)",
"license": "MIT",
"bugs": {
"url": "https://github.com/colorfy-software/eslint-config/issues"
},
"homepage": "https://github.com/colorfy-software/eslint-config#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@babel/core": "^7.17.5",
"@react-native/eslint-config": "0.72.2",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.12.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-standard": "^5.0.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^4.2.2",
"eslint": "^8.10.0",
"release-it": "^14.14.2"
},
"peerDependencies": {
"eslint": ">=8",
"prettier": ">=2"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}