-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.58 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
{
"name": "postdfm-root",
"private": true,
"description": "Provides an API for easily transforming Delphi Forms",
"type": "module",
"scripts": {
"foreach": "yarn workspaces foreach --verbose --parallel --no-private",
"changed": "git add . && git diff-index --quiet HEAD || (git reset --quiet && echo \"Error: changed files\" && git status --porcelain && exit 1)",
"ci": "yarn --immutable && yarn generate && yarn compile:map && yarn lint && yarn format && yarn test && yarn docs && yarn changed",
"generate": "yarn foreach --topological run generate",
"compile": "yarn foreach --topological run compile",
"compile:map": "yarn foreach --topological run compile:map",
"lint": "yarn constraints && eslint --ignore-path .gitignore \"**/*.{js,cjs,ts}\" --ignore-pattern \".yarn/**/*\" --fix",
"format": "prettier --ignore-path .gitignore \"**/*.{js,cjs,json,ts,yml,md}\" \"!.yarn/**/*\" --write",
"test": "yarn foreach run test",
"docs": "yarn foreach run docs",
"release": "semantic-release",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@commitlint/config-conventional": "^18.6.1",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/jest": "^27.5.0",
"@types/nearley": "^2.11.5",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"commitlint": "^18.6.1",
"cz-conventional-changelog": "^3.3.0",
"enhanced-resolve": "^5.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.8.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.0.11",
"jest": "^27.5.1",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"ts-jest": "^27.1.4",
"typedoc": "^0.25.8",
"typescript": "^4.9.5"
},
"workspaces": [
"packages/@postdfm/*",
"packages/postdfm"
],
"files": [],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{json,yml,md}": [
"prettier --ignore-path .gitignore --write"
],
"*.{js,cjs,ts}": [
"eslint --ignore-path .gitignore --ignore-pattern \".yarn/**/*\" --fix",
"prettier --ignore-path .gitignore --write"
]
},
"engines": {
"node": ">=16.0.0"
},
"snyk": true,
"resolutions": {
"npm/chalk": "^4.0.0"
},
"packageManager": "yarn@3.6.1"
}