mhtml-stream 1.0.0 → 1.0.2

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 +31 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mhtml-stream",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Zero dependency stream MHTML parser",
5
5
  "keywords": [
6
6
  "mhtml",
@@ -23,42 +23,47 @@
23
23
  ],
24
24
  "type": "module",
25
25
  "scripts": {
26
- "fmt": "prettier --write 'src/*.ts' '*.json' bundle.mjs",
27
- "lint": "tsc && eslint --cache 'src/*.ts' && typedoc --emit none",
26
+ "fmt": "prettier --cache --write 'src/*.ts' '*.json' bundle.mjs",
27
+ "lint:tsc": "pnpify tsc",
28
+ "lint:es": "eslint --cache 'src/*.ts'",
29
+ "lint:doc": "pnpify typedoc --emit none",
30
+ "lint": "yarn lint:tsc && yarn lint:es && yarn lint:doc",
28
31
  "test": "jest --coverage",
29
- "doc": "typedoc",
30
- "build": "tsc -p tsconfig.build.json && node bundle.mjs",
32
+ "doc": "pnpify typedoc",
33
+ "build": "pnpify tsc -p tsconfig.build.json && node bundle.mjs",
31
34
  "prepack": "yarn lint && yarn test && yarn build"
32
35
  },
33
36
  "dependencies": {
34
37
  "base64-js": "^1.5.1"
35
38
  },
36
39
  "devDependencies": {
37
- "@babel/core": "^7.18.10",
38
- "@babel/preset-env": "^7.18.10",
40
+ "@babel/core": "^7.20.7",
41
+ "@babel/preset-env": "^7.20.2",
39
42
  "@babel/preset-typescript": "^7.18.6",
40
43
  "@types/base64-js": "^1.3.0",
41
- "@types/jest": "^28.1.6",
42
- "@types/node": "^18.6.4",
43
- "@typescript-eslint/eslint-plugin": "^5.32.0",
44
- "@typescript-eslint/parser": "^5.32.0",
45
- "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.14",
46
- "babel-jest": "^28.1.3",
47
- "chalk": "5.0.1",
48
- "esbuild": "^0.14.53",
49
- "eslint": "^8.21.0",
44
+ "@types/jest": "^29.2.4",
45
+ "@types/node": "^18.11.18",
46
+ "@typescript-eslint/eslint-plugin": "^5.47.1",
47
+ "@typescript-eslint/parser": "^5.47.1",
48
+ "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.15",
49
+ "@yarnpkg/pnpify": "^4.0.0-rc.34",
50
+ "babel-jest": "^29.3.1",
51
+ "chalk": "5.2.0",
52
+ "esbuild": "^0.16.12",
53
+ "eslint": "^8.30.0",
50
54
  "eslint-config-prettier": "^8.5.0",
51
- "eslint-plugin-jest": "^26.7.0",
52
- "eslint-plugin-spellcheck": "^0.0.19",
53
- "eslint-plugin-tsdoc": "^0.2.16",
54
- "jest": "^28.1.3",
55
- "prettier": "^2.7.1",
56
- "prettier-plugin-organize-imports": "^3.0.2",
57
- "typedoc": "^0.23.10",
58
- "typescript": "^4.7.4"
55
+ "eslint-plugin-jest": "^27.1.7",
56
+ "eslint-plugin-spellcheck": "^0.0.20",
57
+ "eslint-plugin-tsdoc": "^0.2.17",
58
+ "jest": "^29.3.1",
59
+ "prettier": "^2.8.1",
60
+ "prettier-plugin-organize-imports": "^3.2.1",
61
+ "typedoc": "^0.23.23",
62
+ "typescript": "4.9.4"
59
63
  },
60
64
  "resolutions": {
61
- "minimist": "1.2.6"
65
+ "minimist": "1.2.6",
66
+ "minimatch": "^3.0.5"
62
67
  },
63
68
  "prettier": {
64
69
  "plugins": [
@@ -148,5 +153,5 @@
148
153
  ]
149
154
  }
150
155
  },
151
- "packageManager": "yarn@3.2.2"
156
+ "packageManager": "yarn@3.2.4"
152
157
  }