-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "gorrion-eslint",
"version": "1.0.0",
"description": "Base package for the ESLint sharable config used at Gorrion Software House",
"main": "index.js",
"author": "Gorrion Software House (https://gorrion.io)",
"workspaces": [
"packages/**"
],
"scripts": {
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md}\"",
"publish:prerelease": "lerna publish --cd-version=prerelease --pre-dist-tag prerelease --exact --yes",
"publish:release": "lerna version --conventional-commits --exact --yes && lerna publish from-git --yes"
},
"keywords": [
"eslint",
"gorrion",
"code",
"quality",
"style",
"lint",
"linter",
"validate",
"strict",
"check",
"verify",
"enforce",
"hint"
],
"license": "MIT",
"devDependencies": {
"@gorrion/prettier-config": "0.0.1",
"lerna": "4.0.0",
"prettier": "2.6.2",
"turbo": "1.2.9"
},
"packageManager": "pnpm@7.1.1",
"prettier": "@gorrion/prettier-config",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}