subscribable-things 2.1.6 → 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/README.md +0 -1
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
**A collection of reactive wrappers for various browser APIs.**
|
|
6
6
|
|
|
7
|
-
[](https://github.com/chrisguttandin/subscribable-things/network/dependencies)
|
|
8
7
|
[](https://www.npmjs.com/package/subscribable-things)
|
|
9
8
|
|
|
10
9
|
This package provides factory functions which can be used to turn browser APIs into subscribable things. A subscribable thing can either be consumed directly with callback functions or by utilzing one of the popular libraries for reactive programming.
|
package/package.json
CHANGED
|
@@ -15,18 +15,18 @@
|
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@babel/runtime": "^7.
|
|
18
|
+
"@babel/runtime": "^7.19.0",
|
|
19
19
|
"rxjs-interop": "^2.0.0",
|
|
20
20
|
"tslib": "^2.4.0"
|
|
21
21
|
},
|
|
22
22
|
"description": "A collection of reactive wrappers for various browser APIs.",
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@babel/core": "^7.
|
|
24
|
+
"@babel/core": "^7.19.0",
|
|
25
25
|
"@babel/plugin-external-helpers": "^7.18.6",
|
|
26
|
-
"@babel/plugin-transform-runtime": "^7.18.
|
|
27
|
-
"@babel/preset-env": "^7.
|
|
28
|
-
"@commitlint/cli": "^17.
|
|
29
|
-
"@commitlint/config-angular": "^17.0
|
|
26
|
+
"@babel/plugin-transform-runtime": "^7.18.10",
|
|
27
|
+
"@babel/preset-env": "^7.19.0",
|
|
28
|
+
"@commitlint/cli": "^17.1.2",
|
|
29
|
+
"@commitlint/config-angular": "^17.1.0",
|
|
30
30
|
"@rollup/plugin-babel": "^5.3.1",
|
|
31
31
|
"baconjs": "^3.0.17",
|
|
32
32
|
"body-parser": "^1.20.0",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"chai": "^4.3.6",
|
|
35
35
|
"commitizen": "^4.2.5",
|
|
36
36
|
"cz-conventional-changelog": "^3.3.0",
|
|
37
|
-
"eslint": "^8.
|
|
38
|
-
"eslint-config-holy-grail": "^52.0.
|
|
37
|
+
"eslint": "^8.23.0",
|
|
38
|
+
"eslint-config-holy-grail": "^52.0.31",
|
|
39
39
|
"grunt": "^1.5.3",
|
|
40
40
|
"grunt-cli": "^1.4.3",
|
|
41
41
|
"grunt-sh": "^0.2.0",
|
|
42
42
|
"husky": "^8.0.1",
|
|
43
|
-
"hyperf": "^1.
|
|
43
|
+
"hyperf": "^1.4.0",
|
|
44
44
|
"karma": "^6.4.0",
|
|
45
45
|
"karma-browserstack-launcher": "^1.6.0",
|
|
46
46
|
"karma-chrome-launcher": "^3.1.1",
|
|
@@ -56,17 +56,17 @@
|
|
|
56
56
|
"prettier": "^2.7.1",
|
|
57
57
|
"pretty-quick": "^3.1.3",
|
|
58
58
|
"rimraf": "^3.0.2",
|
|
59
|
-
"rollup": "^2.
|
|
59
|
+
"rollup": "^2.79.0",
|
|
60
60
|
"rxjs": "^7.5.6",
|
|
61
61
|
"rxjs-for-await": "^1.0.0",
|
|
62
62
|
"sinon": "^14.0.0",
|
|
63
63
|
"sinon-chai": "^3.7.0",
|
|
64
64
|
"ts-loader": "^9.3.1",
|
|
65
|
-
"tsconfig-holy-grail": "^11.1.
|
|
65
|
+
"tsconfig-holy-grail": "^11.1.35",
|
|
66
66
|
"tslint": "^6.1.3",
|
|
67
|
-
"tslint-config-holy-grail": "^53.2.
|
|
68
|
-
"typescript": "^4.
|
|
69
|
-
"webpack": "^5.
|
|
67
|
+
"tslint-config-holy-grail": "^53.2.32",
|
|
68
|
+
"typescript": "^4.8.2",
|
|
69
|
+
"webpack": "^5.74.0",
|
|
70
70
|
"xstream": "^11.14.0"
|
|
71
71
|
},
|
|
72
72
|
"files": [
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"test": "grunt lint && grunt test"
|
|
96
96
|
},
|
|
97
97
|
"types": "build/es2019/module.d.ts",
|
|
98
|
-
"version": "2.1.
|
|
98
|
+
"version": "2.1.7"
|
|
99
99
|
}
|