forked from 4lessandrodev/type-ddd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.22 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.22 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
{
"name": "types-ddd",
"version": "2.12.1",
"description": "This package provide utils file and interfaces to assistant build a complex application with domain driving design",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "ISC",
"author": "Alessandro Dev",
"contributors": [
{
"name": "Marko Zlatar",
"url": "https://github.com/mark01zlatar"
}
],
"engines": {
"node": ">=14"
},
"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": {
"prebuild": "rimraf ./dist && npm run check:circular-deps",
"build": "tsc -p tsconfig.lib.json",
"test:prod": "NODE_ENV=production jest --silent --runInBand",
"test:dev": "jest --silent --runInBand",
"test:cov": "TYPES_DDD_LOGS=off jest --silent --runInBand --coverage",
"test": "TYPES_DDD_LOGS=off jest --silent --runInBand",
"test:verbose": "jest --runInBand",
"check:circular-deps": "madge --circular --extensions ts ./lib",
"prepublish:lib": "rimraf ./dist && npm run check:circular-deps",
"publish:lib": "npm publish",
"format:all": "npx prettier --write .",
"prepare": "husky install",
"check:types": "tsc -p ./tsconfig.lib.json --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4lessandrodev/types-ddd.git"
},
"bugs": {
"url": "https://github.com/4lessandrodev/types-ddd/issues"
},
"homepage": "https://alessandroadm.gitbook.io/types-ddd/",
"dependencies": {
"bcrypt": "^5.0.1",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.11.27",
"@types/pino": "^6.3.12",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"madge": "^5.0.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"files": [
"dist/*",
"package.json"
],
"lint-staged": {
"*": [
"npm run format:all",
"npx prettier --ignore-unknown --check"
],
"*.{ts,js}": [
"npm run check:circular-deps"
]
}
}