@stone-js/service-container 0.8.0 → 0.8.2
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/README.md +10 -10
- package/package.json +16 -17
package/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
# Stone.js - Service Container
|
|
2
2
|
|
|
3
|
-
[](https://opensource.org/licenses/MIT)
|
|
4
|
-
[](https://www.npmjs.com/package/@stone-js/service-container)
|
|
5
|
-
[](https://www.npmjs.com/package/@stone-js/service-container)
|
|
3
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
|
+
[](https://www.npmjs.com/package/@stone-js/service-container)
|
|
5
|
+
[](https://www.npmjs.com/package/@stone-js/service-container)
|
|
6
6
|

|
|
7
|
-
[](
|
|
12
|
-
[](https://github.com/stone-foundation/stone-js-
|
|
7
|
+
[](https://github.com/stone-foundation/stone-js-framework/actions/workflows/ci.yml)
|
|
8
|
+
[](https://github.com/stone-foundation/stone-js-framework/actions/workflows/release.yml)
|
|
9
|
+
[](https://sonarcloud.io/summary/new_code?id=stone-foundation_stone-js-framework)
|
|
10
|
+
[](https://sonarcloud.io/summary/new_code?id=stone-foundation_stone-js-framework)
|
|
11
|
+
[](https://github.com/stone-foundation/stone-js-framework/blob/main/SECURITY.md)
|
|
12
|
+
[](https://github.com/stone-foundation/stone-js-framework/security/code-scanning)
|
|
13
|
+
[](https://github.com/stone-foundation/stone-js-framework/network/updates)
|
|
14
14
|
[](https://conventionalcommits.org)
|
|
15
15
|
|
|
16
16
|
IoC Service Container with proxy resolver and destructuring injection provides a very simple, centralized container that stores and resolves libraries, objects, and values to better organize code, manage dependencies, and enhance testability.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stone-js/service-container",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"description": "Javascript/Typescript IoC Service Container with proxy resolver and destructuring injection",
|
|
5
5
|
"author": "Mr. Stone <evensstone@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,20 +39,6 @@
|
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=18.17.0"
|
|
41
41
|
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"lint": "ts-standard src",
|
|
44
|
-
"lint:fix": "ts-standard --fix src tests",
|
|
45
|
-
"predoc": "rimraf docs",
|
|
46
|
-
"doc": "typedoc",
|
|
47
|
-
"clean": "rimraf dist",
|
|
48
|
-
"build": "rollup -c",
|
|
49
|
-
"test": "vitest run",
|
|
50
|
-
"test:cvg": "npm run test -- --coverage",
|
|
51
|
-
"test:text": "npm run test:cvg -- --coverage.reporter=text",
|
|
52
|
-
"test:html": "npm run test:cvg -- --coverage.reporter=html",
|
|
53
|
-
"test:clover": "npm run test:cvg -- --coverage.reporter=clover",
|
|
54
|
-
"prepare": "husky"
|
|
55
|
-
},
|
|
56
42
|
"devDependencies": {
|
|
57
43
|
"@commitlint/cli": "^19.8.1",
|
|
58
44
|
"@commitlint/config-conventional": "^19.8.1",
|
|
@@ -82,5 +68,18 @@
|
|
|
82
68
|
"beforeEach"
|
|
83
69
|
]
|
|
84
70
|
},
|
|
85
|
-
"sideEffects": false
|
|
86
|
-
|
|
71
|
+
"sideEffects": false,
|
|
72
|
+
"scripts": {
|
|
73
|
+
"lint": "ts-standard src",
|
|
74
|
+
"lint:fix": "ts-standard --fix src tests",
|
|
75
|
+
"predoc": "rimraf docs",
|
|
76
|
+
"doc": "typedoc",
|
|
77
|
+
"clean": "rimraf dist",
|
|
78
|
+
"build": "rollup -c",
|
|
79
|
+
"test": "vitest run",
|
|
80
|
+
"test:cvg": "npm run test -- --coverage",
|
|
81
|
+
"test:text": "npm run test:cvg -- --coverage.reporter=text",
|
|
82
|
+
"test:html": "npm run test:cvg -- --coverage.reporter=html",
|
|
83
|
+
"test:clover": "npm run test:cvg -- --coverage.reporter=clover"
|
|
84
|
+
}
|
|
85
|
+
}
|