-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "husky-di",
"version": "1.0.16",
"description": "lightweight dependency injection container",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/typings/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.cjs.json && tsc --project tsconfig.esm.json && tsc --project tsconfig.types.json",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint --ext \".js,.jsx,.ts,.tsx\" \"./src\"",
"fix": "eslint --fix --ext \".js,.jsx,.ts,.tsx\" \"./src\"",
"prepare": "ts-patch install && husky install"
},
"files": [
"dist"
],
"packageManager": "pnpm@9.1.1",
"keywords": [],
"author": "AEPKILL",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@jest/globals": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-patch": "3.0.0-beta3",
"typescript": "^5.0.4",
"typescript-transform-paths": "^3.4.6"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"tslib": "^2.5.2"
}
}