ts-ioc-container 36.0.2 → 37.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +14 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-ioc-container",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "37.0.0",
|
|
4
4
|
"description": "Typescript IoC container",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -41,36 +41,37 @@
|
|
|
41
41
|
"build:cjm": "rimraf cjm && tsc -p tsconfig.production.json --outDir cjm --module CommonJS",
|
|
42
42
|
"build:esm": "rimraf esm && tsc -p tsconfig.production.json --outDir esm",
|
|
43
43
|
"build:types": "rimraf typings && tsc -p tsconfig.production.json --outDir typings --emitDeclarationOnly --declaration",
|
|
44
|
-
"generate:docs": "
|
|
44
|
+
"generate:docs": "ts-node scripts/generateReadme/generateReadme.ts && git add README.md",
|
|
45
45
|
"build": "npm run build:cjm && npm run build:esm && npm run build:types",
|
|
46
46
|
"coverage": "coveralls",
|
|
47
47
|
"test": "jest --coverage",
|
|
48
48
|
"type-check": "tsc --noEmit",
|
|
49
49
|
"type-check:watch": "tsc --noEmit --watch",
|
|
50
|
-
"commit": "cz",
|
|
50
|
+
"commit": "npx git-cz",
|
|
51
51
|
"format": "prettier --write \"**/*.ts\"",
|
|
52
52
|
"lint": "eslint lib/**/*.ts __tests__/**/*.ts scripts/**/*.ts",
|
|
53
53
|
"lint:fix": "npm run lint --fix",
|
|
54
|
+
"release": "npm run build && npm run test && npm run release:publish",
|
|
54
55
|
"prepare": "husky"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
58
|
"@types/jest": "29.5.14",
|
|
59
|
+
"handlebars": "^4.7.8",
|
|
60
|
+
"jest": "29.7.0",
|
|
61
|
+
"moq.ts": "^7.4.1",
|
|
62
|
+
"reflect-metadata": "^0.2.2",
|
|
63
|
+
"rimraf": "3.0.2",
|
|
64
|
+
"ts-jest": "29.2.5",
|
|
65
|
+
"ts-node": "^10.9.1",
|
|
66
|
+
"typescript": "5.7.3",
|
|
58
67
|
"@typescript-eslint/eslint-plugin": "8.25.0",
|
|
59
68
|
"@typescript-eslint/parser": "8.25.0",
|
|
60
|
-
"cz-conventional-changelog": "^3.3.0",
|
|
61
69
|
"eslint": "9.21.0",
|
|
62
70
|
"eslint-config-prettier": "10.0.1",
|
|
63
71
|
"eslint-plugin-prettier": "5.2.3",
|
|
64
|
-
"handlebars": "^4.7.8",
|
|
65
72
|
"husky": "^9.1.7",
|
|
66
|
-
"jest": "29.7.0",
|
|
67
73
|
"lint-staged": "^15.4.3",
|
|
68
|
-
"
|
|
69
|
-
"prettier": "3.5.2",
|
|
70
|
-
"reflect-metadata": "^0.2.2",
|
|
71
|
-
"rimraf": "3.0.2",
|
|
72
|
-
"ts-jest": "29.2.5",
|
|
73
|
-
"typescript": "5.7.3"
|
|
74
|
+
"prettier": "3.5.2"
|
|
74
75
|
},
|
|
75
76
|
"lint-staged": {
|
|
76
77
|
"*.{js,ts,tsx}": [
|
|
@@ -78,10 +79,5 @@
|
|
|
78
79
|
"prettier --write"
|
|
79
80
|
]
|
|
80
81
|
},
|
|
81
|
-
"gitHead": "ae10f302c7e0f55196b42669040735112479a854"
|
|
82
|
-
"config": {
|
|
83
|
-
"commitizen": {
|
|
84
|
-
"path": "./node_modules/cz-conventional-changelog"
|
|
85
|
-
}
|
|
86
|
-
}
|
|
82
|
+
"gitHead": "ae10f302c7e0f55196b42669040735112479a854"
|
|
87
83
|
}
|