-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.85 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
{
"name": "@adonisjs/eslint-config",
"version": "2.0.0-beta.7",
"description": "The base configuration for ESLint used by AdonisJS applications and packages",
"main": "index.js",
"type": "module",
"files": [
"index.js"
],
"scripts": {
"format": "prettier --write .",
"release": "release-it"
},
"devDependencies": {
"@adonisjs/prettier-config": "^1.3.0",
"@release-it/conventional-changelog": "^8.0.1",
"eslint": "^9.9.1",
"prettier": "^3.3.3",
"release-it": "^17.6.0"
},
"peerDependencies": {
"eslint": "^9.9.0",
"prettier": "^3.3.3"
},
"dependencies": {
"@adonisjs/eslint-plugin": "^2.0.0-beta.5",
"@stylistic/eslint-plugin-ts": "^2.7.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"typescript-eslint": "^8.3.0"
},
"homepage": "https://github.com/adonisjs/eslint-config#readme",
"bugs": {
"url": "https://github.com/adonisjs/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/eslint-config.git"
},
"keywords": [
"eslint-config",
"adonisjs"
],
"author": "Julien Ripouteau",
"contributors": [
"Harminder Virk <[email protected]>"
],
"license": "MIT",
"publishConfig": {
"provenance": true
},
"release-it": {
"git": {
"requireCleanWorkingDir": true,
"requireUpstream": true,
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"push": true,
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"skipChecks": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
},
"prettier": "@adonisjs/prettier-config"
}