@thi.ng/csp 2.1.4 → 2.1.7
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 +1 -1
- package/README.md +2 -2
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ node --experimental-repl-await
|
|
|
78
78
|
> const csp = await import("@thi.ng/csp");
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
Package sizes (gzipped, pre-treeshake): ESM: 2.
|
|
81
|
+
Package sizes (gzipped, pre-treeshake): ESM: 2.64 KB
|
|
82
82
|
|
|
83
83
|
## Dependencies
|
|
84
84
|
|
|
@@ -268,4 +268,4 @@ If this project contributes to an academic publication, please cite it as:
|
|
|
268
268
|
|
|
269
269
|
## License
|
|
270
270
|
|
|
271
|
-
© 2016 -
|
|
271
|
+
© 2016 - 2022 Karsten Schmidt // Apache Software License 2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/csp",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"description": "ES6 promise based CSP primitives & operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -38,20 +38,20 @@
|
|
|
38
38
|
"testnode": "tsc -p test && node build/test/node.js"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@thi.ng/api": "^8.3.
|
|
42
|
-
"@thi.ng/arrays": "^2.
|
|
43
|
-
"@thi.ng/checks": "^3.1.
|
|
44
|
-
"@thi.ng/dcons": "^3.
|
|
45
|
-
"@thi.ng/errors": "^2.1.
|
|
46
|
-
"@thi.ng/transducers": "^8.2
|
|
41
|
+
"@thi.ng/api": "^8.3.6",
|
|
42
|
+
"@thi.ng/arrays": "^2.2.2",
|
|
43
|
+
"@thi.ng/checks": "^3.1.6",
|
|
44
|
+
"@thi.ng/dcons": "^3.2.2",
|
|
45
|
+
"@thi.ng/errors": "^2.1.6",
|
|
46
|
+
"@thi.ng/transducers": "^8.3.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@microsoft/api-extractor": "^7.
|
|
50
|
-
"@thi.ng/testament": "^0.2.
|
|
49
|
+
"@microsoft/api-extractor": "^7.23.1",
|
|
50
|
+
"@thi.ng/testament": "^0.2.6",
|
|
51
51
|
"rimraf": "^3.0.2",
|
|
52
52
|
"tools": "^0.0.1",
|
|
53
|
-
"typedoc": "^0.22.
|
|
54
|
-
"typescript": "^4.
|
|
53
|
+
"typedoc": "^0.22.15",
|
|
54
|
+
"typescript": "^4.6.4"
|
|
55
55
|
},
|
|
56
56
|
"keywords": [
|
|
57
57
|
"async",
|
|
@@ -77,22 +77,22 @@
|
|
|
77
77
|
],
|
|
78
78
|
"exports": {
|
|
79
79
|
".": {
|
|
80
|
-
"
|
|
80
|
+
"default": "./index.js"
|
|
81
81
|
},
|
|
82
82
|
"./api": {
|
|
83
|
-
"
|
|
83
|
+
"default": "./api.js"
|
|
84
84
|
},
|
|
85
85
|
"./buffer": {
|
|
86
|
-
"
|
|
86
|
+
"default": "./buffer.js"
|
|
87
87
|
},
|
|
88
88
|
"./channel": {
|
|
89
|
-
"
|
|
89
|
+
"default": "./channel.js"
|
|
90
90
|
},
|
|
91
91
|
"./mult": {
|
|
92
|
-
"
|
|
92
|
+
"default": "./mult.js"
|
|
93
93
|
},
|
|
94
94
|
"./pubsub": {
|
|
95
|
-
"
|
|
95
|
+
"default": "./pubsub.js"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"thi.ng": {
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
"status": "deprecated",
|
|
103
103
|
"year": 2016
|
|
104
104
|
},
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "cf084be5fd5932226054d2dd32bad35481379f5d\n"
|
|
106
106
|
}
|