worker-timers 8.0.19 → 8.0.20
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 +12 -14
package/package.json
CHANGED
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@babel/runtime": "^7.
|
|
18
|
+
"@babel/runtime": "^7.27.0",
|
|
19
19
|
"tslib": "^2.8.1",
|
|
20
|
-
"worker-timers-broker": "^8.0.
|
|
21
|
-
"worker-timers-worker": "^9.0.
|
|
20
|
+
"worker-timers-broker": "^8.0.6",
|
|
21
|
+
"worker-timers-worker": "^9.0.6"
|
|
22
22
|
},
|
|
23
23
|
"description": "A replacement for setInterval() and setTimeout() which works in unfocused windows.",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@babel/cli": "^7.
|
|
25
|
+
"@babel/cli": "^7.27.0",
|
|
26
26
|
"@babel/core": "^7.26.10",
|
|
27
27
|
"@babel/plugin-external-helpers": "^7.25.9",
|
|
28
28
|
"@babel/plugin-transform-runtime": "^7.26.10",
|
|
@@ -37,10 +37,7 @@
|
|
|
37
37
|
"commitizen": "^4.3.1",
|
|
38
38
|
"cz-conventional-changelog": "^3.3.0",
|
|
39
39
|
"eslint": "^8.57.0",
|
|
40
|
-
"eslint-config-holy-grail": "^60.0.
|
|
41
|
-
"grunt": "^1.6.1",
|
|
42
|
-
"grunt-cli": "^1.5.0",
|
|
43
|
-
"grunt-sh": "^0.2.1",
|
|
40
|
+
"eslint-config-holy-grail": "^60.0.31",
|
|
44
41
|
"husky": "^9.1.7",
|
|
45
42
|
"karma": "^6.4.4",
|
|
46
43
|
"karma-chrome-launcher": "^3.2.0",
|
|
@@ -50,13 +47,12 @@
|
|
|
50
47
|
"karma-sinon-chai": "^2.0.2",
|
|
51
48
|
"karma-webkit-launcher": "^2.6.0",
|
|
52
49
|
"karma-webpack": "^5.0.1",
|
|
53
|
-
"lint-staged": "^15.
|
|
54
|
-
"load-grunt-config": "^4.0.1",
|
|
50
|
+
"lint-staged": "^15.5.0",
|
|
55
51
|
"memfs": "^4.17.0",
|
|
56
52
|
"mocha": "^11.1.0",
|
|
57
53
|
"prettier": "^3.5.3",
|
|
58
54
|
"rimraf": "^6.0.1",
|
|
59
|
-
"rollup": "^4.
|
|
55
|
+
"rollup": "^4.37.0",
|
|
60
56
|
"sinon": "^17.0.2",
|
|
61
57
|
"sinon-chai": "^3.7.0",
|
|
62
58
|
"terser-webpack-plugin": "^5.3.14",
|
|
@@ -94,13 +90,15 @@
|
|
|
94
90
|
"scripts": {
|
|
95
91
|
"build": "rimraf build/* && webpack --config config/webpack/worker-es2019.js && tsc --project src/tsconfig.json && rollup --config config/rollup/bundle.mjs && babel ./build/es2019 --config-file ./config/babel/build.json --out-dir ./build/node",
|
|
96
92
|
"lint": "npm run lint:config && npm run lint:src && npm run lint:test",
|
|
97
|
-
"lint:config": "eslint --config config/eslint/config.json --ext .js --report-unused-disable-directives config/",
|
|
93
|
+
"lint:config": "eslint --config config/eslint/config.json --ext .cjs --ext .js --ext .mjs --report-unused-disable-directives config/",
|
|
98
94
|
"lint:src": "tslint --config config/tslint/src.json --project src/tsconfig.json src/*.ts src/**/*.ts",
|
|
99
95
|
"lint:test": "eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/",
|
|
100
96
|
"prepare": "husky",
|
|
101
97
|
"prepublishOnly": "npm run build",
|
|
102
|
-
"test": "npm run lint &&
|
|
98
|
+
"test": "npm run lint && npm run build && npm run test:integration-browser && npm run test:integration-node",
|
|
99
|
+
"test:integration-browser": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"chrome\" -o \"$TARGET\" = \"firefox\" -o \"$TARGET\" = \"safari\" ]; then karma start config/karma/config-integration.js --single-run; fi",
|
|
100
|
+
"test:integration-node": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"node\" ]; then mocha --bail --parallel --recursive --require config/mocha/config-integration.js test/integration; fi"
|
|
103
101
|
},
|
|
104
102
|
"types": "build/es2019/module.d.ts",
|
|
105
|
-
"version": "8.0.
|
|
103
|
+
"version": "8.0.20"
|
|
106
104
|
}
|