-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.24 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
{
"private": true,
"name": "@demartini/base-configs",
"version": "1.0.0",
"description": "A collection of base configs for code quality and linting tools.",
"author": {
"name": "Iolar Demartini Junior",
"email": "[email protected]",
"url": "https://demartini.dev"
},
"bugs": {
"url": "https://github.com/demartini/base-configs/issues"
},
"contributors": [
{
"name": "Base Configs Contributors",
"url": "https://github.com/demartini/base-configs/graphs/contributors"
}
],
"engines": {
"node": ">= 12",
"npm": ">= 6",
"yarn": ">=1.20.0"
},
"homepage": "https://github.com/demartini/base-configs#readme",
"keywords": [
"commitlint",
"config",
"eslint",
"lint",
"markdownlint",
"prettier",
"semantic-release",
"stylelint"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/demartini/base-configs.git"
},
"scripts": {
"deps:dedupe": "lernaupdate --dedupe",
"deps:update": "lernaupdate",
"eslint:fix": "eslint --format=pretty '**/*.{js,tsx,ts}' --fix",
"eslint:report": "eslint --format=pretty '**/*.{js,tsx,ts}'",
"lerna:bootstrap:ci": "lerna bootstrap -- --frozen-lockfile --ignore-engines",
"lerna:bootstrap": "lerna bootstrap",
"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}' --write",
"prettier:report": "prettier '**/*.{js,tsx,ts,json}' --check"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-unicorn": "^45.0.1",
"lerna": "^6.1.0",
"lerna-update-wizard": "^1.1.2",
"markdownlint-cli": "^0.32.2",
"prettier": "^2.8.0",
"simple-git-hooks": "^2.8.1"
}
}