ts-ioc-container 23.1.7 → 23.1.9

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.
Files changed (58) hide show
  1. package/package.json +54 -50
  2. /package/{cjm → cjs}/IInjector.d.ts +0 -0
  3. /package/{cjm → cjs}/IInjector.js +0 -0
  4. /package/{cjm → cjs}/IInjector.js.map +0 -0
  5. /package/{cjm → cjs}/container/AutoMockedContainer.d.ts +0 -0
  6. /package/{cjm → cjs}/container/AutoMockedContainer.js +0 -0
  7. /package/{cjm → cjs}/container/AutoMockedContainer.js.map +0 -0
  8. /package/{cjm → cjs}/container/Container.d.ts +0 -0
  9. /package/{cjm → cjs}/container/Container.js +0 -0
  10. /package/{cjm → cjs}/container/Container.js.map +0 -0
  11. /package/{cjm → cjs}/container/ContainerDisposedError.d.ts +0 -0
  12. /package/{cjm → cjs}/container/ContainerDisposedError.js +0 -0
  13. /package/{cjm → cjs}/container/ContainerDisposedError.js.map +0 -0
  14. /package/{cjm → cjs}/container/DependencyNotFoundError.d.ts +0 -0
  15. /package/{cjm → cjs}/container/DependencyNotFoundError.js +0 -0
  16. /package/{cjm → cjs}/container/DependencyNotFoundError.js.map +0 -0
  17. /package/{cjm → cjs}/container/EmptyContainer.d.ts +0 -0
  18. /package/{cjm → cjs}/container/EmptyContainer.js +0 -0
  19. /package/{cjm → cjs}/container/EmptyContainer.js.map +0 -0
  20. /package/{cjm → cjs}/container/IContainer.d.ts +0 -0
  21. /package/{cjm → cjs}/container/IContainer.js +0 -0
  22. /package/{cjm → cjs}/container/IContainer.js.map +0 -0
  23. /package/{cjm → cjs}/container/MethodNotImplementedError.d.ts +0 -0
  24. /package/{cjm → cjs}/container/MethodNotImplementedError.js +0 -0
  25. /package/{cjm → cjs}/container/MethodNotImplementedError.js.map +0 -0
  26. /package/{cjm → cjs}/index.d.ts +0 -0
  27. /package/{cjm → cjs}/index.js +0 -0
  28. /package/{cjm → cjs}/index.js.map +0 -0
  29. /package/{cjm → cjs}/provider/ArgsProvider.d.ts +0 -0
  30. /package/{cjm → cjs}/provider/ArgsProvider.js +0 -0
  31. /package/{cjm → cjs}/provider/ArgsProvider.js.map +0 -0
  32. /package/{cjm → cjs}/provider/IProvider.d.ts +0 -0
  33. /package/{cjm → cjs}/provider/IProvider.js +0 -0
  34. /package/{cjm → cjs}/provider/IProvider.js.map +0 -0
  35. /package/{cjm → cjs}/provider/Provider.d.ts +0 -0
  36. /package/{cjm → cjs}/provider/Provider.js +0 -0
  37. /package/{cjm → cjs}/provider/Provider.js.map +0 -0
  38. /package/{cjm → cjs}/provider/ProviderDecorator.d.ts +0 -0
  39. /package/{cjm → cjs}/provider/ProviderDecorator.js +0 -0
  40. /package/{cjm → cjs}/provider/ProviderDecorator.js.map +0 -0
  41. /package/{cjm → cjs}/provider/SingletonProvider.d.ts +0 -0
  42. /package/{cjm → cjs}/provider/SingletonProvider.js +0 -0
  43. /package/{cjm → cjs}/provider/SingletonProvider.js.map +0 -0
  44. /package/{cjm → cjs}/provider/TaggedProvider.d.ts +0 -0
  45. /package/{cjm → cjs}/provider/TaggedProvider.js +0 -0
  46. /package/{cjm → cjs}/provider/TaggedProvider.js.map +0 -0
  47. /package/{cjm → cjs}/reflection.d.ts +0 -0
  48. /package/{cjm → cjs}/reflection.js +0 -0
  49. /package/{cjm → cjs}/reflection.js.map +0 -0
  50. /package/{cjm → cjs}/registration/DependencyMissingKeyError.d.ts +0 -0
  51. /package/{cjm → cjs}/registration/DependencyMissingKeyError.js +0 -0
  52. /package/{cjm → cjs}/registration/DependencyMissingKeyError.js.map +0 -0
  53. /package/{cjm → cjs}/registration/Registration.d.ts +0 -0
  54. /package/{cjm → cjs}/registration/Registration.js +0 -0
  55. /package/{cjm → cjs}/registration/Registration.js.map +0 -0
  56. /package/{cjm → cjs}/utils.d.ts +0 -0
  57. /package/{cjm → cjs}/utils.js +0 -0
  58. /package/{cjm → cjs}/utils.js.map +0 -0
package/package.json CHANGED
@@ -1,52 +1,56 @@
1
1
  {
2
- "name": "ts-ioc-container",
3
- "version": "23.1.7",
4
- "description": "Typescript IoC container",
5
- "author": "ibabkin <igba14@gmail.com>",
6
- "homepage": "https://github.com/IgorBabkin/ts-ioc-container/tree/master/packages/ts-ioc-container",
7
- "license": "ISC",
8
- "sideEffects": false,
9
- "main": "cjm/index.js",
10
- "types": "esm/index.d.ts",
11
- "module": "esm/index.js",
12
- "keywords": [
13
- "dependency-injection",
14
- "inversion-of-control",
15
- "container",
16
- "typescript",
17
- "ioc",
18
- "di"
19
- ],
20
- "directories": {
21
- "lib": "lib",
22
- "test": "__tests__"
23
- },
24
- "files": [
25
- "cjm/**/*",
26
- "esm/**/*"
27
- ],
28
- "repository": {
29
- "type": "git",
30
- "url": "git+https://github.com/IgorBabkin/ts-ioc-container/tree/master/packages/ts-ioc-container"
31
- },
32
- "scripts": {
33
- "build:cjs": "rimraf cjm && tsc -p tsconfig.json --outDir cjm --module CommonJS --target ES5",
34
- "build:esm": "rimraf esm && tsc -p tsconfig.json --outDir esm",
35
- "build": "npm-run-all -p build:**",
36
- "watch": "nodemon --watch ./lib --exec npm run build",
37
- "test": "jest"
38
- },
39
- "devDependencies": {
40
- "@types/jest": "27.0.2",
41
- "jest": "27.2.3",
42
- "moq.ts": "^7.3.4",
43
- "nodemon": "^2.0.13",
44
- "npm-run-all": "4.1.5",
45
- "reflect-metadata": "^0.1.13",
46
- "rimraf": "3.0.2",
47
- "ts-constructor-injector": "^4.0.2",
48
- "ts-jest": "27.0.5",
49
- "typescript": "4.4.3"
50
- },
51
- "gitHead": "365b7e305d7768ebaf7ed3a017e3b348d34483a0"
2
+ "name": "ts-ioc-container",
3
+ "version": "23.1.9",
4
+ "description": "Typescript IoC container",
5
+ "publishConfig": {
6
+ "access": "public",
7
+ "registry": "https://registry.npmjs.org/"
8
+ },
9
+ "author": "ibabkin <igba14@gmail.com>",
10
+ "homepage": "https://github.com/IgorBabkin/ts-ioc-container/tree/master/packages/ts-ioc-container",
11
+ "license": "ISC",
12
+ "sideEffects": false,
13
+ "main": "cjs/index.js",
14
+ "types": "esm/index.d.ts",
15
+ "module": "esm/index.js",
16
+ "keywords": [
17
+ "dependency-injection",
18
+ "inversion-of-control",
19
+ "container",
20
+ "typescript",
21
+ "ioc",
22
+ "di"
23
+ ],
24
+ "directories": {
25
+ "lib": "lib",
26
+ "test": "__tests__"
27
+ },
28
+ "files": [
29
+ "cjs/**/*",
30
+ "esm/**/*"
31
+ ],
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/IgorBabkin/ts-ioc-container/tree/master/packages/ts-ioc-container"
35
+ },
36
+ "scripts": {
37
+ "build:cjs": "rimraf cjs && tsc -p tsconfig.json --outDir cjs --module CommonJS --target ES5",
38
+ "build:esm": "rimraf esm && tsc -p tsconfig.json --outDir esm",
39
+ "build": "npm-run-all -p build:**",
40
+ "watch": "nodemon --watch ./lib --exec npm run build",
41
+ "test": "jest"
42
+ },
43
+ "devDependencies": {
44
+ "@types/jest": "27.0.2",
45
+ "jest": "27.2.3",
46
+ "moq.ts": "^7.3.4",
47
+ "nodemon": "^2.0.13",
48
+ "npm-run-all": "4.1.5",
49
+ "reflect-metadata": "^0.1.13",
50
+ "rimraf": "3.0.2",
51
+ "ts-constructor-injector": "^4.0.2",
52
+ "ts-jest": "27.0.5",
53
+ "typescript": "4.4.3"
54
+ },
55
+ "gitHead": "03690cc6f314a0fa1b94e0ce0ff00aea53737f74"
52
56
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes