@stone-js/service-container 0.8.0 → 0.8.1

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 (2) hide show
  1. package/README.md +10 -10
  2. package/package.json +16 -17
package/README.md CHANGED
@@ -1,16 +1,16 @@
1
1
  # Stone.js - Service Container
2
2
 
3
- [![npm](https://img.shields.io/npm/l/@stone-js/service-container)](https://opensource.org/licenses/MIT)
4
- [![npm](https://img.shields.io/npm/v/@stone-js/service-container)](https://www.npmjs.com/package/@stone-js/service-container)
5
- [![npm](https://img.shields.io/npm/dm/@stone-js/service-container)](https://www.npmjs.com/package/@stone-js/service-container)
3
+ [![npm license](https://img.shields.io/npm/l/@stone-js/service-container)](https://opensource.org/licenses/MIT)
4
+ [![npm version](https://img.shields.io/npm/v/@stone-js/service-container)](https://www.npmjs.com/package/@stone-js/service-container)
5
+ [![npm downloads](https://img.shields.io/npm/dm/@stone-js/service-container)](https://www.npmjs.com/package/@stone-js/service-container)
6
6
  ![Maintenance](https://img.shields.io/maintenance/yes/2026)
7
- [![Build Status](https://github.com/stone-foundation/stone-js-service-container/actions/workflows/main.yml/badge.svg)](https://github.com/stone-foundation/stone-js-service-container/actions/workflows/main.yml)
8
- [![Publish Package to npmjs](https://github.com/stone-foundation/stone-js-service-container/actions/workflows/release.yml/badge.svg)](https://github.com/stone-foundation/stone-js-service-container/actions/workflows/release.yml)
9
- [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=stone-foundation_stone-js-service-container&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=stone-foundation_stone-js-service-container)
10
- [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=stone-foundation_stone-js-service-container&metric=coverage)](https://sonarcloud.io/summary/new_code?id=stone-foundation_stone-js-service-container)
11
- [![Security Policy](https://img.shields.io/badge/Security-Policy-blue.svg)](./SECURITY.md)
12
- [![CodeQL](https://github.com/stone-foundation/stone-js-service-container/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/stone-foundation/stone-js-service-container/security/code-scanning)
13
- [![Dependabot Status](https://img.shields.io/badge/Dependabot-enabled-brightgreen.svg)](https://github.com/stone-foundation/stone-js-service-container/network/updates)
7
+ [![CI](https://github.com/stone-foundation/stone-js-framework/actions/workflows/ci.yml/badge.svg)](https://github.com/stone-foundation/stone-js-framework/actions/workflows/ci.yml)
8
+ [![Release](https://github.com/stone-foundation/stone-js-framework/actions/workflows/release.yml/badge.svg)](https://github.com/stone-foundation/stone-js-framework/actions/workflows/release.yml)
9
+ [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=stone-foundation_stone-js-framework&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=stone-foundation_stone-js-framework)
10
+ [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=stone-foundation_stone-js-framework&metric=coverage)](https://sonarcloud.io/summary/new_code?id=stone-foundation_stone-js-framework)
11
+ [![Security Policy](https://img.shields.io/badge/Security-Policy-blue.svg)](https://github.com/stone-foundation/stone-js-framework/blob/main/SECURITY.md)
12
+ [![CodeQL](https://github.com/stone-foundation/stone-js-framework/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/stone-foundation/stone-js-framework/security/code-scanning)
13
+ [![Dependabot Status](https://img.shields.io/badge/Dependabot-enabled-brightgreen.svg)](https://github.com/stone-foundation/stone-js-framework/network/updates)
14
14
  [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](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.0",
3
+ "version": "0.8.1",
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
+ }