@extra-memoize/memory-cache 0.2.4 → 0.2.6
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 +19 -31
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@extra-memoize/memory-cache",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.6",
|
4
4
|
"description": "",
|
5
5
|
"keywords": [],
|
6
6
|
"files": [
|
@@ -18,10 +18,8 @@
|
|
18
18
|
"test": "jest --runInBand --config jest.config.js",
|
19
19
|
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
20
20
|
"test:coverage": "jest --coverage --config jest.config.js",
|
21
|
-
"prepublishOnly": "run-s clean build
|
22
|
-
"clean": "
|
23
|
-
"clean:build": "rimraf lib",
|
24
|
-
"clean:bundle": "rimraf dist",
|
21
|
+
"prepublishOnly": "run-s clean build",
|
22
|
+
"clean": "rimraf lib",
|
25
23
|
"build": "run-p build:*",
|
26
24
|
"build:es2015": "run-s build:es2015:*",
|
27
25
|
"build:es2015:compile": "tsc --project tsconfig.build.json --module commonjs --target es2015 --outDir lib/es2015",
|
@@ -29,7 +27,6 @@
|
|
29
27
|
"build:es2018": "run-s build:es2018:*",
|
30
28
|
"build:es2018:compile": "tsc --project tsconfig.build.json --module commonjs --target es2018 --outDir lib/es2018",
|
31
29
|
"build:es2018:patch": "tscpaths -p tsconfig.build.json -s ./src -o ./lib/es2018",
|
32
|
-
"bundle": "rollup --config rollup.config.js",
|
33
30
|
"release": "standard-version"
|
34
31
|
},
|
35
32
|
"husky": {
|
@@ -39,37 +36,28 @@
|
|
39
36
|
}
|
40
37
|
},
|
41
38
|
"devDependencies": {
|
42
|
-
"@
|
43
|
-
"@commitlint/
|
44
|
-
"@
|
45
|
-
"@
|
46
|
-
"@
|
47
|
-
"
|
48
|
-
"
|
49
|
-
"
|
50
|
-
"@types/jest": "^27.5.0",
|
51
|
-
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
52
|
-
"@typescript-eslint/parser": "^5.32.0",
|
53
|
-
"eslint": "^8.21.0",
|
54
|
-
"extra-memoize": "^0.9.0",
|
55
|
-
"extra-promise": "^3.2.0",
|
39
|
+
"@commitlint/cli": "^17.4.2",
|
40
|
+
"@commitlint/config-conventional": "^17.4.2",
|
41
|
+
"@types/jest": "^29.2.6",
|
42
|
+
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
43
|
+
"@typescript-eslint/parser": "^5.48.2",
|
44
|
+
"eslint": "^8.32.0",
|
45
|
+
"extra-memoize": "^0.9.2",
|
46
|
+
"extra-promise": "^4.0.0",
|
56
47
|
"husky": "^4.3.8",
|
57
|
-
"jest": "^
|
48
|
+
"jest": "^29.3.1",
|
58
49
|
"npm-run-all": "^4.1.5",
|
59
|
-
"return-style": "^1.0.
|
60
|
-
"rimraf": "^
|
61
|
-
"rollup": "^2.77.2",
|
62
|
-
"rollup-plugin-analyzer": "^4.0.0",
|
63
|
-
"rollup-plugin-terser": "^7.0.2",
|
50
|
+
"return-style": "^1.0.1",
|
51
|
+
"rimraf": "^4.1.1",
|
64
52
|
"standard-version": "^9.5.0",
|
65
|
-
"ts-jest": "^
|
53
|
+
"ts-jest": "^29.0.5",
|
66
54
|
"tscpaths": "^0.0.9",
|
67
|
-
"tslib": "^2.4.
|
68
|
-
"typescript": "^4.
|
55
|
+
"tslib": "^2.4.1",
|
56
|
+
"typescript": "^4.8.4"
|
69
57
|
},
|
70
58
|
"dependencies": {
|
71
|
-
"@blackglory/prelude": "^0.
|
72
|
-
"@blackglory/structures": "^0.
|
59
|
+
"@blackglory/prelude": "^0.2.2",
|
60
|
+
"@blackglory/structures": "^0.11.3 || ^0.12.3"
|
73
61
|
},
|
74
62
|
"peerDependencies": {
|
75
63
|
"extra-memoize": "^0.6.0 || ^0.7.0 || ^0.8.0 || ^0.9.0"
|