assertron 9.2.3 → 9.2.4
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 +17 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assertron",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.4",
|
|
4
4
|
"description": "A supplementary assertion library",
|
|
5
5
|
"homepage": "https://github.com/unional/assertron",
|
|
6
6
|
"bugs": {
|
|
@@ -33,9 +33,10 @@
|
|
|
33
33
|
"!ts/**/*.spec.ts"
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
|
-
"build": "run-p build:cjs build:esm",
|
|
36
|
+
"build": "run-p build:cjs build:esm build:tslib",
|
|
37
37
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
38
38
|
"build:esm": "tsc -p tsconfig.esm.json",
|
|
39
|
+
"build:tslib": "tsc -p tsconfig.tslib.json",
|
|
39
40
|
"build:watch": "tsc --watch",
|
|
40
41
|
"clean": "rimraf cjs esm coverage lib libm",
|
|
41
42
|
"coverage": "jest --coverage",
|
|
@@ -55,11 +56,11 @@
|
|
|
55
56
|
"dependencies": {
|
|
56
57
|
"is-node": "^1.0.2",
|
|
57
58
|
"is-promise": "^4.0.0",
|
|
58
|
-
"iso-error": "^4.3.
|
|
59
|
+
"iso-error": "^4.3.5",
|
|
59
60
|
"path-equal": "^1.2.1",
|
|
60
|
-
"satisfier": "^5.2.
|
|
61
|
-
"tersify": "^3.10.
|
|
62
|
-
"type-plus": "^4.
|
|
61
|
+
"satisfier": "^5.2.1",
|
|
62
|
+
"tersify": "^3.10.1",
|
|
63
|
+
"type-plus": "^4.10.0"
|
|
63
64
|
},
|
|
64
65
|
"devDependencies": {
|
|
65
66
|
"@commitlint/cli": "^17.0.2",
|
|
@@ -70,15 +71,15 @@
|
|
|
70
71
|
"@size-limit/preset-small-lib": "^7.0.8",
|
|
71
72
|
"@types/jest": "^28.1.1",
|
|
72
73
|
"@types/lodash": "^4.14.182",
|
|
73
|
-
"@types/node": "^
|
|
74
|
-
"@typescript-eslint/eslint-plugin": "^5.27.
|
|
74
|
+
"@types/node": "^14.18.21",
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "^5.27.1",
|
|
75
76
|
"depcheck": "^1.4.3",
|
|
76
77
|
"eslint": "^8.17.0",
|
|
77
78
|
"eslint-config-prettier": "^8.5.0",
|
|
78
79
|
"eslint-plugin-harmony": "^7.1.0",
|
|
79
80
|
"husky": "^8.0.1",
|
|
80
|
-
"jest": "^28.1.
|
|
81
|
-
"jest-validate": "^28.1.
|
|
81
|
+
"jest": "^28.1.1",
|
|
82
|
+
"jest-validate": "^28.1.1",
|
|
82
83
|
"jest-watch-suspend": "^1.1.2",
|
|
83
84
|
"jest-watch-toggle-config": "^2.0.1",
|
|
84
85
|
"jest-watch-typeahead": "^1.1.0",
|
|
@@ -86,9 +87,10 @@
|
|
|
86
87
|
"npm-run-all": "^4.1.5",
|
|
87
88
|
"pinst": "^3.0.0",
|
|
88
89
|
"rimraf": "^3.0.2",
|
|
89
|
-
"semantic-release": "^19.0.
|
|
90
|
+
"semantic-release": "^19.0.3",
|
|
90
91
|
"size-limit": "^7.0.8",
|
|
91
92
|
"ts-jest": "^28.0.4",
|
|
93
|
+
"tslib": "^2.4.0",
|
|
92
94
|
"typescript": "^4.7.3"
|
|
93
95
|
},
|
|
94
96
|
"packageManager": "yarn@3.2.1",
|
|
@@ -100,6 +102,10 @@
|
|
|
100
102
|
{
|
|
101
103
|
"path": "./esm/index.js",
|
|
102
104
|
"limit": "10 KB"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"path": "./tslib/index.js",
|
|
108
|
+
"limit": "15 KB"
|
|
103
109
|
}
|
|
104
110
|
]
|
|
105
111
|
}
|