@briza/illogical 1.5.3 → 1.5.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/changelog.md +4 -0
- package/package.json +10 -10
- package/readme.md +1 -1
package/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@briza/illogical",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "A micro conditional javascript engine used to parse the raw logical and comparison expressions, evaluate the expression in the given data context, and provide access to a text form of the given expressions.",
|
|
5
5
|
"main": "lib/illogical.js",
|
|
6
6
|
"module": "lib/illogical.esm.js",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"rules"
|
|
43
43
|
],
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@babel/core": "^7.17.
|
|
45
|
+
"@babel/core": "^7.17.8",
|
|
46
46
|
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
|
47
47
|
"@babel/preset-env": "^7.16.11",
|
|
48
48
|
"@babel/preset-typescript": "^7.16.7",
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"@rollup/plugin-commonjs": "^21.0.2",
|
|
51
51
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
52
52
|
"@types/jest": "^27.4.1",
|
|
53
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
54
|
-
"@typescript-eslint/parser": "^5.
|
|
55
|
-
"eslint": "^8.
|
|
56
|
-
"eslint-config-prettier": "^8.
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
|
54
|
+
"@typescript-eslint/parser": "^5.16.0",
|
|
55
|
+
"eslint": "^8.11.0",
|
|
56
|
+
"eslint-config-prettier": "^8.5.0",
|
|
57
57
|
"eslint-import-resolver-typescript": "^2.5.0",
|
|
58
58
|
"eslint-plugin-import": "^2.25.4",
|
|
59
59
|
"eslint-plugin-node": "^11.1.0",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
63
63
|
"jest": "^27.5.1",
|
|
64
64
|
"license-checker": "^25.0.1",
|
|
65
|
-
"prettier": "^2.
|
|
66
|
-
"rollup": "^2.
|
|
65
|
+
"prettier": "^2.6.0",
|
|
66
|
+
"rollup": "^2.70.1",
|
|
67
67
|
"rollup-plugin-eslint": "^7.0.0",
|
|
68
68
|
"ts-jest": "^27.1.3",
|
|
69
|
-
"typedoc": "^0.22.
|
|
70
|
-
"typescript": "4.
|
|
69
|
+
"typedoc": "^0.22.13",
|
|
70
|
+
"typescript": "4.6.2"
|
|
71
71
|
}
|
|
72
72
|
}
|
package/readme.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A micro conditional javascript engine used to parse the raw logical and comparison expressions, evaluate the expression in the given data context, and provide access to a text form of the given expressions.
|
|
4
4
|
|
|
5
|
-
> Revision:
|
|
5
|
+
> Revision: March 22, 2022.
|
|
6
6
|
|
|
7
7
|
## About
|
|
8
8
|
|