array-buffer-cache-worker 6.0.72 → 6.0.74

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.
Files changed (1) hide show
  1. package/package.json +21 -16
package/package.json CHANGED
@@ -9,24 +9,24 @@
9
9
  }
10
10
  },
11
11
  "dependencies": {
12
- "@babel/runtime": "^7.22.5",
13
- "tslib": "^2.6.0",
14
- "worker-factory": "^7.0.7"
12
+ "@babel/runtime": "^7.22.6",
13
+ "tslib": "^2.6.1",
14
+ "worker-factory": "^7.0.9"
15
15
  },
16
16
  "description": "The worker which is used by the array-buffer-cache package.",
17
17
  "devDependencies": {
18
- "@babel/core": "^7.22.5",
18
+ "@babel/core": "^7.22.9",
19
19
  "@babel/plugin-external-helpers": "^7.22.5",
20
- "@babel/plugin-transform-runtime": "^7.22.5",
21
- "@babel/preset-env": "^7.22.5",
22
- "@commitlint/cli": "^17.6.6",
23
- "@commitlint/config-angular": "^17.6.6",
20
+ "@babel/plugin-transform-runtime": "^7.22.9",
21
+ "@babel/preset-env": "^7.22.9",
22
+ "@commitlint/cli": "^17.6.7",
23
+ "@commitlint/config-angular": "^17.6.7",
24
24
  "@rollup/plugin-babel": "^6.0.3",
25
25
  "chai": "^4.3.7",
26
26
  "commitizen": "^4.3.0",
27
27
  "cz-conventional-changelog": "^3.3.0",
28
- "eslint": "^8.44.0",
29
- "eslint-config-holy-grail": "^57.2.12",
28
+ "eslint": "^8.45.0",
29
+ "eslint-config-holy-grail": "^57.2.18",
30
30
  "grunt": "^1.6.1",
31
31
  "grunt-cli": "^1.4.3",
32
32
  "grunt-sh": "^0.2.1",
@@ -47,15 +47,15 @@
47
47
  "prettier": "^2.8.8",
48
48
  "pretty-quick": "^3.1.3",
49
49
  "rimraf": "^5.0.1",
50
- "rollup": "^3.26.0",
50
+ "rollup": "^3.26.3",
51
51
  "sinon": "^15.2.0",
52
52
  "sinon-chai": "^3.7.0",
53
53
  "ts-loader": "^9.4.4",
54
- "tsconfig-holy-grail": "^14.0.7",
54
+ "tsconfig-holy-grail": "^14.0.8",
55
55
  "tslint": "^6.1.3",
56
- "tslint-config-holy-grail": "^55.0.3",
56
+ "tslint-config-holy-grail": "^55.0.4",
57
57
  "typescript": "^5.1.6",
58
- "webpack": "^5.88.1"
58
+ "webpack": "^5.88.2"
59
59
  },
60
60
  "files": [
61
61
  "build/es2019/",
@@ -72,10 +72,15 @@
72
72
  "url": "https://github.com/chrisguttandin/array-buffer-cache-worker.git"
73
73
  },
74
74
  "scripts": {
75
+ "build": "rimraf build/* && tsc --project src/tsconfig.json && rollup --config config/rollup/bundle.mjs",
76
+ "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/",
78
+ "lint:src": "tslint --config config/tslint/src.json --project src/tsconfig.json src/*.ts src/**/*.ts",
79
+ "lint:test": "eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/",
75
80
  "prepare": "husky install",
76
- "prepublishOnly": "grunt build",
81
+ "prepublishOnly": "npm run build",
77
82
  "test": "grunt lint && grunt test"
78
83
  },
79
84
  "types": "build/es2019/module.d.ts",
80
- "version": "6.0.72"
85
+ "version": "6.0.74"
81
86
  }