-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 1.74 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
{
"name": "rich-domain",
"version": "1.25.1",
"description": "This package provide utils file and interfaces to assistant build a complex application with domain driving design",
"main": "index.js",
"types": "index.d.ts",
"author": "Alessandro Dev",
"repository": {
"type": "git",
"url": "git+https://github.com/4lessandrodev/rich-domain.git"
},
"bugs": {
"url": "https://github.com/4lessandrodev/rich-domain/issues"
},
"homepage": "https://github.com/4lessandrodev/rich-domain",
"license": "MIT",
"engines": {
"node": ">=16.x <=22"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^22.10.2",
"jest": "^28.1.3",
"madge": "^6.0.0",
"rimraf": "^5.0.10",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^5.4.3"
},
"keywords": [
"Complexity",
"NodeJS",
"Business Logic",
"DDD",
"Domain Driving Design",
"Typescript",
"DDD-Utils",
"Base Entity",
"Base Aggregate",
"Base Value Object",
"Use Cases",
"Domain Events",
"Clean Architecture"
],
"scripts": {
"test": "jest --runInBand --silent",
"test:verbose": "jest --runInBand",
"prebuild": "rimraf ./dist && npm run check:circular-deps && ./clear.sh",
"postbuild": "cp -r ./dist/* ./",
"build": "tsc -p tsconfig.lib.json",
"prepublish": "npm run build",
"postpublish": "./clear.sh",
"check:circular-deps": "madge --circular --extensions ts ./lib",
"preexample": "tsc -p tsconfig.example.json",
"example": "node ./example/index.js"
},
"files": [
"core/*",
"utils/*",
"index.js",
"index.d.ts",
"types.d.ts",
"types.js",
"package.json",
"index.d.ts.map",
"index.js.map",
"types.d.ts.map",
"types.js.map",
"types-util.d.ts",
"types-util.d.ts.map",
"types-util.js",
"types-util.js.map"
]
}