subscribable-things 2.1.56 → 2.1.58
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 +23 -16
package/package.json
CHANGED
|
@@ -15,19 +15,20 @@
|
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@babel/runtime": "^7.
|
|
18
|
+
"@babel/runtime": "^7.29.2",
|
|
19
19
|
"rxjs-interop": "^2.0.0",
|
|
20
20
|
"tslib": "^2.8.1"
|
|
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.29.0",
|
|
25
25
|
"@babel/plugin-external-helpers": "^7.27.1",
|
|
26
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
27
|
-
"@babel/preset-env": "^7.
|
|
28
|
-
"@commitlint/cli": "^20.
|
|
29
|
-
"@commitlint/config-angular": "^20.
|
|
30
|
-
"@rollup/plugin-babel": "^
|
|
26
|
+
"@babel/plugin-transform-runtime": "^7.29.0",
|
|
27
|
+
"@babel/preset-env": "^7.29.2",
|
|
28
|
+
"@commitlint/cli": "^20.5.0",
|
|
29
|
+
"@commitlint/config-angular": "^20.5.0",
|
|
30
|
+
"@rollup/plugin-babel": "^7.0.0",
|
|
31
|
+
"@vitest/browser-webdriverio": "^4.1.0",
|
|
31
32
|
"baconjs": "^3.0.23",
|
|
32
33
|
"body-parser": "^2.2.2",
|
|
33
34
|
"callbag-basics": "^4.0.0",
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
"commitizen": "^4.3.1",
|
|
36
37
|
"cz-conventional-changelog": "^3.3.0",
|
|
37
38
|
"eslint": "^8.57.0",
|
|
38
|
-
"eslint-config-holy-grail": "^61.0.
|
|
39
|
+
"eslint-config-holy-grail": "^61.0.10",
|
|
39
40
|
"husky": "^9.1.7",
|
|
40
41
|
"hyperf": "~1.6.2",
|
|
41
42
|
"karma": "^6.4.4",
|
|
@@ -47,12 +48,12 @@
|
|
|
47
48
|
"karma-webkit-launcher": "^2.6.0",
|
|
48
49
|
"karma-webpack": "^5.0.1",
|
|
49
50
|
"kefir": "^3.8.8",
|
|
50
|
-
"lint-staged": "^16.
|
|
51
|
+
"lint-staged": "^16.4.0",
|
|
51
52
|
"midi-test": "^1.3.2",
|
|
52
53
|
"mocha": "^11.7.5",
|
|
53
|
-
"prettier": "^3.
|
|
54
|
-
"rimraf": "^6.1.
|
|
55
|
-
"rollup": "^4.
|
|
54
|
+
"prettier": "^3.8.1",
|
|
55
|
+
"rimraf": "^6.1.3",
|
|
56
|
+
"rollup": "^4.59.0",
|
|
56
57
|
"rxjs": "^7.8.2",
|
|
57
58
|
"rxjs-for-await": "^1.0.0",
|
|
58
59
|
"sinon": "^17.0.2",
|
|
@@ -62,7 +63,8 @@
|
|
|
62
63
|
"tslint": "^6.1.3",
|
|
63
64
|
"tslint-config-holy-grail": "^56.0.7",
|
|
64
65
|
"typescript": "^5.9.3",
|
|
65
|
-
"
|
|
66
|
+
"vitest": "^4.1.0",
|
|
67
|
+
"webpack": "^5.105.4",
|
|
66
68
|
"xstream": "^11.14.0"
|
|
67
69
|
},
|
|
68
70
|
"files": [
|
|
@@ -94,9 +96,14 @@
|
|
|
94
96
|
"prepare": "husky",
|
|
95
97
|
"prepublishOnly": "npm run build",
|
|
96
98
|
"test": "npm run lint && npm run build && npm run test:integration && npm run test:unit",
|
|
97
|
-
"test:integration": "
|
|
98
|
-
"test:
|
|
99
|
+
"test:integration": "npm run test:integration-chrome && npm run test:integration-chrome-canary && npm run test:integration-firefox && npm run test:integration-firefox-developer && npm run test:integration-safari",
|
|
100
|
+
"test:integration-chrome": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"chrome\" ]; then npx vitest --config config/vitest/integration-chrome-current.ts; fi",
|
|
101
|
+
"test:integration-chrome-canary": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"chrome-canary\" ]; then npx vitest --config config/vitest/integration-chrome-canary.ts; fi",
|
|
102
|
+
"test:integration-firefox": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"firefox\" ]; then npx vitest --config config/vitest/integration-firefox-current.ts; fi",
|
|
103
|
+
"test:integration-firefox-developer": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"firefox-developer\" ]; then npx vitest --config config/vitest/integration-firefox-developer.ts; fi",
|
|
104
|
+
"test:integration-safari": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"safari\" ]; then npx vitest --config config/vitest/integration-safari-current.ts; fi",
|
|
105
|
+
"test:unit": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"unit\" ]; then npx vitest --config config/vitest/unit.ts; fi"
|
|
99
106
|
},
|
|
100
107
|
"types": "build/es2019/module.d.ts",
|
|
101
|
-
"version": "2.1.
|
|
108
|
+
"version": "2.1.58"
|
|
102
109
|
}
|