-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.72 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "jimpex",
"description": "Express as dependency injection container.",
"homepage": "https://homer0.github.io/jimpex/",
"version": "10.0.2",
"repository": "homer0/jimpex",
"author": "Leonardo Apiwan (@homer0) <[email protected]>",
"license": "MIT",
"dependencies": {
"@homer0/api-utils": "^3.0.6",
"@homer0/deep-assign": "^3.0.6",
"@homer0/deferred": "^3.0.6",
"@homer0/env-utils": "^3.0.6",
"@homer0/events-hub": "^3.0.6",
"@homer0/jimple": "^3.0.6",
"@homer0/object-utils": "^3.0.6",
"@homer0/package-info": "^3.0.6",
"@homer0/path-utils": "^3.0.6",
"@homer0/root-file": "^3.0.6",
"@homer0/simple-config": "^3.0.6",
"@homer0/simple-logger": "^3.0.6",
"@homer0/ts-async-import": "^1.1.5",
"body-parser": "^1.20.3",
"compression": "^1.7.5",
"express": "^4.21.1",
"mime": "^4.0.4",
"multer": "1.4.5-lts.1",
"node-fetch": "^3.3.2",
"spdy": "^4.0.2",
"statuses": "^2.0.1",
"urijs": "^1.19.11"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@homer0/eslint-plugin": "^12.0.6",
"@homer0/prettier-config": "^1.1.3",
"@homer0/prettier-plugin-jsdoc": "^9.1.0",
"@homer0/tsconfig": "^1.0.17",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/multer": "^1.4.12",
"@types/node": "^22.9.0",
"@types/spdy": "^3.4.9",
"@types/statuses": "^2.0.5",
"@types/urijs": "^1.19.25",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"leasot": "^14.4.0",
"lint-staged": "^15.2.10",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"tsup": "^8.3.5",
"typedoc": "0.26.11",
"typescript": "^5.6.3"
},
"engine-strict": true,
"engines": {
"node": ">=18.17 <23"
},
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"lint-staged": {
"*.{ts,tsx,js,json,css,scss,md}": [
"prettier --write"
],
"*.{ts,tsx,js}": [
"eslint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"build": "./utils/scripts/build",
"test": "./utils/scripts/test",
"lint": "./utils/scripts/lint",
"lint:all": "./utils/scripts/lint-all",
"types:check": "./utils/scripts/types-check",
"docs": "./utils/scripts/docs",
"todo": "./utils/scripts/todo",
"example": "./utils/scripts/example",
"prepublishOnly": "pnpm run build",
"prepare": "./utils/scripts/prepare"
}
}