-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.48 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 4.48 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "domain-objects",
"author": "ehmpathy",
"description": "A simple, convenient way to represent domain objects, leverage domain knowledge, and add runtime validation in your code base.",
"version": "0.31.9",
"repository": "ehmpathy/domain-objects",
"homepage": "https://github.com/ehmpathy/domain-objects",
"keywords": [
"domain-driven-design",
"domain",
"driven",
"design",
"model",
"validation",
"schema",
"type",
"checking"
],
"bugs": "https://github.com/ehmpathy/domain-objects/issues",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": ">=8.0.0"
},
"files": [
"/dist"
],
"scripts": {
"build:ts": "tsc -p ./tsconfig.build.json",
"commit:with-cli": "npx cz",
"fix:format:biome": "biome check --write",
"fix:format": "npm run fix:format:biome",
"fix:lint": "biome check --write",
"fix": "npm run fix:format && npm run fix:lint",
"build:clean": "chmod -R u+w dist 2>/dev/null; rm -rf dist/",
"build:compile": "tsc -p ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
"build": "npm run build:clean && npm run build:compile && npm run build:complete --if-present",
"test:commits": "LAST_TAG=$(git describe --tags --abbrev=0 @^ 2> /dev/null || git rev-list --max-parents=0 HEAD) && npx commitlint --from $LAST_TAG --to HEAD --verbose",
"test:types": "tsc -p ./tsconfig.json --noEmit",
"test:format:biome": "biome format",
"test:format": "npm run test:format:biome",
"test:lint:deps": "npx depcheck -c ./.depcheckrc.yml",
"test:lint:biome": "biome check --diagnostic-level=error",
"test:lint:biome:all": "biome check",
"test:lint": "npm run test:lint:biome && npm run test:lint:deps",
"test:unit": "jest -c ./jest.unit.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main') $([ -n $RESNAP ] && echo '--updateSnapshot')",
"test:integration": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main') $([ -n $RESNAP ] && echo '--updateSnapshot')",
"test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests $([ -n $RESNAP ] && echo '--updateSnapshot')",
"test": "npm run test:commits && npm run test:types && npm run test:format && npm run test:lint && npm run test:unit && npm run test:integration && npm run test:acceptance:locally",
"test:acceptance": "npm run build && jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests $([ -n $RESNAP ] && echo '--updateSnapshot')",
"prepush": "npm run test && npm run build",
"prepublish": "npm run build",
"preversion": "npm run prepush",
"postversion": "git push origin HEAD --tags --no-verify",
"prepare:husky": "husky install && chmod ug+x .husky/*",
"prepare:rhachet": "rhachet init && rhachet roles link --repo ehmpathy --role mechanic && rhachet roles link --repo bhuild --role behaver && rhachet roles init --role mechanic && rhachet roles init --role behaver",
"prepare": "if [ -e .git ] && [ -z $CI ]; then npm run prepare:husky && npm run prepare:rhachet; fi"
},
"dependencies": {
"change-case": "^4.1.2",
"helpful-errors": "1.5.3",
"type-fns": "1.21.0",
"uuid-fns": "^1.1.3"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@ehmpathy/uni-time": "^1.6.1",
"@swc/core": "1.15.3",
"@swc/jest": "0.2.39",
"@tsconfig/node20": "20.1.5",
"@tsconfig/strictest": "2.0.5",
"@types/jest": "30.0.0",
"@types/joi": "^17.2.3",
"@types/node": "22.15.21",
"@types/yup": "^0.29.6",
"cz-conventional-changelog": "3.3.0",
"declapract": "^0.13.11",
"declapract-typescript-ehmpathy": "^0.47.10",
"declastruct": "1.7.3",
"declastruct-github": "1.3.0",
"depcheck": "1.4.3",
"domain-objects": "^0.31.7",
"esbuild-register": "3.6.0",
"husky": "8.0.3",
"jest": "30.2.0",
"joi": "^17.2.1",
"rhachet": "1.19.1",
"rhachet-roles-bhuild": "0.5.0",
"rhachet-roles-ehmpathy": "1.15.25",
"test-fns": "1.4.2",
"tsc-alias": "1.8.10",
"tsx": "4.20.6",
"typescript": "5.4.5",
"yalc": "1.0.0-pre.53",
"yup": "^0.29.3",
"zod": "^3.23.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@10.24.0"
}