@blumintinc/typescript-memoize 1.2.0 → 1.4.0

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 CHANGED
@@ -1,65 +1,65 @@
1
- {
2
- "name": "@blumintinc/typescript-memoize",
3
- "version": "1.2.0",
4
- "description": "Memoize decorator for Typescript with deep equality",
5
- "main": "./dist/memoize-decorator.js",
6
- "module": "./dist/es2015/memoize-decorator.js",
7
- "typings": "./dist/memoize-decorator.d.ts",
8
- "scripts": {
9
- "test": "karma start test/karma.config.js --single-run",
10
- "prepublish": "npm run build && npm run build:es2015",
11
- "clean": "rm -rf ./dist",
12
- "build": "tsc",
13
- "build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015",
14
- "tslint": "tslint --project .",
15
- "eslint": "npm run tslint"
16
- },
17
- "private": false,
18
- "publishConfig": {
19
- "access": "public"
20
- },
21
- "files": [
22
- "dist",
23
- "src"
24
- ],
25
- "repository": {
26
- "type": "git",
27
- "url": "git+https://github.com/BluMintInc/typescript-memoize.git"
28
- },
29
- "keywords": [
30
- "typescript",
31
- "memoize",
32
- "functional",
33
- "decorator"
34
- ],
35
- "author": "Joseph O'Connor",
36
- "license": "MIT",
37
- "bugs": {
38
- "url": "https://github.com/BluMintInc/typescript-memoize/issues"
39
- },
40
- "homepage": "https://github.com/BluMintInc/typescript-memoize#readme",
41
- "devDependencies": {
42
- "@types/jasmine": "3.6.2",
43
- "@types/node": "14.14.9",
44
- "awesome-typescript-loader": "5.2.1",
45
- "es6-shim": "0.35.6",
46
- "jasmine-core": "3.6.0",
47
- "karma": "6.3.16",
48
- "karma-chrome-launcher": "3.1.0",
49
- "karma-es6-shim": "1.0.0",
50
- "karma-jasmine": "4.0.1",
51
- "karma-jasmine-html-reporter": "1.5.4",
52
- "karma-junit-reporter": "2.0.1",
53
- "karma-sourcemap-loader": "0.3.8",
54
- "karma-spec-reporter": "0.0.32",
55
- "karma-threshold-reporter": "0.1.15",
56
- "karma-typescript": "5.2.0",
57
- "source-map-loader": "1.1.2",
58
- "tslib": "2.0.3",
59
- "tslint": "6.1.3",
60
- "typescript": "4.1.2"
61
- },
62
- "dependencies": {
63
- "fast-deep-equal": "^3.1.3"
64
- }
65
- }
1
+ {
2
+ "name": "@blumintinc/typescript-memoize",
3
+ "version": "1.4.0",
4
+ "description": "Memoize decorator for Typescript with deep equality",
5
+ "main": "./dist/memoize-decorator.js",
6
+ "module": "./dist/es2015/memoize-decorator.js",
7
+ "typings": "./dist/memoize-decorator.d.ts",
8
+ "scripts": {
9
+ "test": "karma start test/karma.config.js --single-run",
10
+ "prepublish": "npm run build && npm run build:es2015",
11
+ "clean": "rm -rf ./dist",
12
+ "build": "tsc",
13
+ "build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015",
14
+ "tslint": "tslint --project .",
15
+ "eslint": "npm run tslint"
16
+ },
17
+ "private": false,
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "src"
24
+ ],
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/BluMintInc/typescript-memoize.git"
28
+ },
29
+ "keywords": [
30
+ "typescript",
31
+ "memoize",
32
+ "functional",
33
+ "decorator"
34
+ ],
35
+ "author": "Joseph O'Connor",
36
+ "license": "MIT",
37
+ "bugs": {
38
+ "url": "https://github.com/BluMintInc/typescript-memoize/issues"
39
+ },
40
+ "homepage": "https://github.com/BluMintInc/typescript-memoize#readme",
41
+ "devDependencies": {
42
+ "@types/jasmine": "3.6.2",
43
+ "@types/node": "14.14.9",
44
+ "es6-shim": "0.35.6",
45
+ "jasmine-core": "3.6.0",
46
+ "karma": "6.3.16",
47
+ "karma-chrome-launcher": "3.1.0",
48
+ "karma-es6-shim": "1.0.0",
49
+ "karma-jasmine": "4.0.1",
50
+ "karma-jasmine-html-reporter": "1.5.4",
51
+ "karma-junit-reporter": "2.0.1",
52
+ "karma-sourcemap-loader": "0.3.8",
53
+ "karma-spec-reporter": "0.0.32",
54
+ "karma-threshold-reporter": "0.1.15",
55
+ "karma-typescript": "5.5.4",
56
+ "karma-typescript-es6-transform": "^5.5.4",
57
+ "source-map-loader": "1.1.2",
58
+ "tslib": "2.0.3",
59
+ "tslint": "6.1.3",
60
+ "typescript": "4.1.2"
61
+ },
62
+ "dependencies": {
63
+ "@blumintinc/fast-deep-equal": "^4.0.0"
64
+ }
65
+ }