-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.75 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
{
"name": "code-quality-tools",
"version": "1.0.0",
"description": "Monorepo aggregating various packages, generators, scripts and other goodies to make code look/work better",
"repository": {
"type": "git",
"url": "https://github.com/lmc-eu/code-quality-tools"
},
"author": "Tomáš Litera <[email protected]>",
"license": "BSD-3-Clause",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"packages:diff": "lerna diff",
"packages:changed": "lerna changed",
"packages:list": "lerna ls",
"packages:test": "lerna run test",
"test": "npm-run-all --serial lint packages:test format",
"commit:lint:test": "commitlint --from HEAD~1 --to HEAD --verbose",
"format": "yarn format:check",
"format:check": "prettier --check ./",
"format:fix": "prettier --write ./",
"format:fix:changelog": "prettier --write ./packages/**/CHANGELOG.md",
"lint": "npm-run-all --serial lint:es lint:text lint:md",
"lint:fix": "npm-run-all --serial lint:*:fix",
"lint:es": "eslint ./",
"lint:es:fix": "yarn lint:es --fix",
"lint:text": "textlint ./",
"lint:text:fix": "yarn lint:text --fix",
"lint:md": "remark ./ --quiet",
"version": "yarn format:fix:changelog"
},
"devDependencies": {
"commitlint-cli": "1.1.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-prettier": "5.2.1",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lerna": "8.1.8",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"remark-cli": "12.0.1",
"remark-preset-lint-consistent": "6.0.0",
"remark-preset-lint-markdown-style-guide": "6.0.0",
"remark-preset-lint-recommended": "7.0.0"
}
}