ts-ioc-container 45.1.6 → 45.1.8
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 +11 -3
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-ioc-container",
|
|
3
|
-
"version": "45.1.
|
|
3
|
+
"version": "45.1.8",
|
|
4
4
|
"description": "Typescript IoC container",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"registry": "https://registry.npmjs.org/"
|
|
8
8
|
},
|
|
9
9
|
"author": "ibabkin <igba14@gmail.com>",
|
|
10
|
-
"homepage": "https://github.
|
|
10
|
+
"homepage": "https://igorbabkin.github.io/ts-ioc-container",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"sideEffects": false,
|
|
13
13
|
"main": "cjm/index.js",
|
|
@@ -52,7 +52,12 @@
|
|
|
52
52
|
"lint": "eslint lib/**/*.ts __tests__/**/*.ts scripts/**/*.ts",
|
|
53
53
|
"lint:fix": "npm run lint --fix",
|
|
54
54
|
"prepare": "husky",
|
|
55
|
-
"release": "npm run build && npm test && npm publish"
|
|
55
|
+
"release": "npm run build && npm test && npm publish",
|
|
56
|
+
"docs:install": "cd docs && npm install",
|
|
57
|
+
"docs:dev": "cd docs && npm run dev",
|
|
58
|
+
"docs:serve": "cd docs && npm run dev",
|
|
59
|
+
"docs:build": "cd docs && npm run build",
|
|
60
|
+
"docs:preview": "cd docs && npm run preview"
|
|
56
61
|
},
|
|
57
62
|
"devDependencies": {
|
|
58
63
|
"@semantic-release/changelog": "^6.0.3",
|
|
@@ -82,6 +87,9 @@
|
|
|
82
87
|
"*.{js,ts,tsx}": [
|
|
83
88
|
"eslint --fix",
|
|
84
89
|
"prettier --write"
|
|
90
|
+
],
|
|
91
|
+
"docs/**/*.{js,ts,tsx,mjs}": [
|
|
92
|
+
"prettier --write"
|
|
85
93
|
]
|
|
86
94
|
},
|
|
87
95
|
"gitHead": "ae10f302c7e0f55196b42669040735112479a854",
|