assemblerjs 0.3.22 → 0.3.24
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 +1 -1
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# assembler.js
|
|
2
2
|
|
|
3
|
-
A general purpose and zero-dependency [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection)
|
|
3
|
+
A general purpose and zero-dependency [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection) library for node and browser.
|
|
4
4
|
|
|
5
5
|
   
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assemblerjs",
|
|
3
|
-
"description": "A general purpose and zero-dependency Dependency Injection
|
|
4
|
-
"version": "0.3.
|
|
3
|
+
"description": "A general purpose and zero-dependency Dependency Injection library for node and browser.",
|
|
4
|
+
"version": "0.3.24",
|
|
5
5
|
"author": "Benoît LAHOZ <info@benoitlahoz.io>",
|
|
6
6
|
"bugs": "https://github.com/benoitlahoz/assemblerjs/issues",
|
|
7
7
|
"devDependencies": {
|
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
"vitepress": "^1.5.0",
|
|
20
20
|
"vitest": "^2.1.1"
|
|
21
21
|
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">= 18.12.0"
|
|
24
|
+
},
|
|
22
25
|
"exports": {
|
|
23
26
|
".": {
|
|
24
27
|
"types": "./dist/index.d.ts",
|
|
@@ -32,35 +35,32 @@
|
|
|
32
35
|
],
|
|
33
36
|
"homepage": "https://github.com/benoitlahoz/assemblerjs#README",
|
|
34
37
|
"keywords": [
|
|
35
|
-
"
|
|
38
|
+
"agencement",
|
|
36
39
|
"assemblage",
|
|
37
40
|
"assembler",
|
|
38
|
-
"
|
|
39
|
-
"multi",
|
|
40
|
-
"machine",
|
|
41
|
+
"composition",
|
|
41
42
|
"decorator",
|
|
42
43
|
"dependency",
|
|
43
44
|
"di",
|
|
44
45
|
"injection",
|
|
46
|
+
"ioc",
|
|
47
|
+
"machine",
|
|
48
|
+
"metadata",
|
|
49
|
+
"multi",
|
|
45
50
|
"reflection",
|
|
46
51
|
"swc",
|
|
47
|
-
"typescript"
|
|
48
|
-
"metadata",
|
|
49
|
-
"ioc"
|
|
52
|
+
"typescript"
|
|
50
53
|
],
|
|
51
54
|
"license": "MIT",
|
|
52
55
|
"main": "dist/index.js",
|
|
53
|
-
"repository":
|
|
54
|
-
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/benoitlahoz/assemblerjs.git"
|
|
56
|
-
},
|
|
56
|
+
"repository": "benoitlahoz/assemblerjs.git",
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "vite build",
|
|
59
59
|
"coverage": "vitest run --coverage --passWithNoTests && istanbul-badges-readme",
|
|
60
|
-
"test": "vitest --coverage --passWithNoTests",
|
|
61
|
-
"docs:dev": "vitepress dev docs --host",
|
|
62
60
|
"docs:build": "vitepress build docs",
|
|
63
|
-
"docs:
|
|
61
|
+
"docs:dev": "vitepress dev docs --host",
|
|
62
|
+
"docs:preview": "vitepress preview docs",
|
|
63
|
+
"test": "vitest --coverage --passWithNoTests"
|
|
64
64
|
},
|
|
65
65
|
"types": "dist/index.d.ts"
|
|
66
66
|
}
|