array-buffer-cache-worker 6.0.100 → 6.0.102
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 +11 -12
package/package.json
CHANGED
@@ -9,9 +9,9 @@
|
|
9
9
|
}
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
|
-
"@babel/runtime": "^7.
|
12
|
+
"@babel/runtime": "^7.27.0",
|
13
13
|
"tslib": "^2.8.1",
|
14
|
-
"worker-factory": "^7.0.
|
14
|
+
"worker-factory": "^7.0.41"
|
15
15
|
},
|
16
16
|
"description": "The worker which is used by the array-buffer-cache package.",
|
17
17
|
"devDependencies": {
|
@@ -26,10 +26,7 @@
|
|
26
26
|
"commitizen": "^4.3.1",
|
27
27
|
"cz-conventional-changelog": "^3.3.0",
|
28
28
|
"eslint": "^8.57.0",
|
29
|
-
"eslint-config-holy-grail": "^60.0.
|
30
|
-
"grunt": "^1.6.1",
|
31
|
-
"grunt-cli": "^1.5.0",
|
32
|
-
"grunt-sh": "^0.2.1",
|
29
|
+
"eslint-config-holy-grail": "^60.0.31",
|
33
30
|
"husky": "^9.1.7",
|
34
31
|
"karma": "^6.4.4",
|
35
32
|
"karma-chrome-launcher": "^3.2.0",
|
@@ -41,13 +38,12 @@
|
|
41
38
|
"karma-sinon-chai": "^2.0.2",
|
42
39
|
"karma-webkit-launcher": "^2.6.0",
|
43
40
|
"karma-webpack": "^5.0.1",
|
44
|
-
"lint-staged": "^15.
|
45
|
-
"load-grunt-config": "^4.0.1",
|
41
|
+
"lint-staged": "^15.5.0",
|
46
42
|
"memory-fs": "^0.5.0",
|
47
43
|
"mocha": "^11.1.0",
|
48
44
|
"prettier": "^3.5.3",
|
49
45
|
"rimraf": "^6.0.1",
|
50
|
-
"rollup": "^4.
|
46
|
+
"rollup": "^4.37.0",
|
51
47
|
"sinon": "^17.0.2",
|
52
48
|
"sinon-chai": "^3.7.0",
|
53
49
|
"ts-loader": "^9.5.2",
|
@@ -74,13 +70,16 @@
|
|
74
70
|
"scripts": {
|
75
71
|
"build": "rimraf build/* && tsc --project src/tsconfig.json && rollup --config config/rollup/bundle.mjs",
|
76
72
|
"lint": "npm run lint:config && npm run lint:src && npm run lint:test",
|
77
|
-
"lint:config": "eslint --config config/eslint/config.json --ext .js --report-unused-disable-directives config/",
|
73
|
+
"lint:config": "eslint --config config/eslint/config.json --ext .cjs --ext .js --ext .mjs --report-unused-disable-directives config/",
|
78
74
|
"lint:src": "tslint --config config/tslint/src.json --project src/tsconfig.json src/*.ts src/**/*.ts",
|
79
75
|
"lint:test": "eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/",
|
80
76
|
"prepare": "husky",
|
81
77
|
"prepublishOnly": "npm run build",
|
82
|
-
"test": "npm run lint &&
|
78
|
+
"test": "npm run lint && npm run build && npm run test:expectation && npm run test:integration && npm run test:unit",
|
79
|
+
"test:expectation": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"expectation\" ]; then karma start config/karma/config-expectation.js --single-run; fi",
|
80
|
+
"test:integration": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ]; then karma start config/karma/config-integration.js --single-run; fi",
|
81
|
+
"test:unit": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"unit\" ]; then karma start config/karma/config-unit.js --single-run; fi"
|
83
82
|
},
|
84
83
|
"types": "build/es2019/module.d.ts",
|
85
|
-
"version": "6.0.
|
84
|
+
"version": "6.0.102"
|
86
85
|
}
|