-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
{
"private": true,
"name": "@ivuorinen/base-configs-meta",
"version": "1.0.0",
"type": "module",
"description": "A collection of base configs for code quality and linting tools.",
"author": {
"name": "Ismo Vuorinen",
"url": "https://github.com/ivuorinen"
},
"bugs": {
"url": "https://github.com/ivuorinen/base-configs/issues"
},
"contributors": [
{
"name": "Base Configs Contributors",
"url": "https://github.com/ivuorinen/base-configs/graphs/contributors"
}
],
"engines": {
"node": "^20.9.0 || >=21.1.0"
},
"homepage": "https://github.com/ivuorinen/base-configs#readme",
"keywords": [
"commitlint",
"config",
"eslint",
"lint",
"markdownlint",
"prettier",
"semantic-release",
"stylelint"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ivuorinen/base-configs.git"
},
"scripts": {
"deps:dedupe": "lernaupdate --dedupe",
"deps:update": "lernaupdate",
"eslint:fix": "eslint '**/*.{js,tsx,ts,mjs,cjs}' --fix",
"eslint:report": "eslint '**/*.{js,tsx,ts,mjs,cjs}'",
"lerna:bootstrap:ci": "yarn --frozen-lockfile --ignore-engines",
"lerna:bootstrap": "yarn",
"lerna:publish": "lerna publish from-package",
"lerna:version": "lerna version",
"markdownlint:fix": "markdownlint '**/*.md' --fix",
"markdownlint:report": "markdownlint '**/*.md'",
"prettier:fix": "prettier '**/*.{js,tsx,ts,json,mjs,cjs}' --write",
"prettier:report": "prettier '**/*.{js,tsx,ts,json,mjs,cjs}' --check"
},
"devDependencies": {
"@ivuorinen/commitlint-config": "file:packages/commitlint-config",
"@ivuorinen/eslint-config": "file:packages/eslint-config",
"@ivuorinen/prettier-config": "file:packages/prettier-config",
"@ivuorinen/semantic-release-config": "file:packages/semantic-release-config",
"@types/node": "*",
"lerna": "^8.0.0",
"simple-git-hooks": "^2.8.1",
"typescript": ">=4.2.0"
},
"packageManager": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}