@gmod/cram 1.7.1 → 1.7.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.
- package/CHANGELOG.md +4 -0
- package/README.md +19 -240
- package/dist/craiIndex.d.ts +2 -2
- package/dist/cram-bundle.js +1 -1
- package/dist/cramFile/codecs/_base.d.ts +3 -3
- package/dist/cramFile/codecs/byteArrayLength.d.ts +1 -1
- package/dist/cramFile/codecs/dataSeriesTypes.d.ts +3 -3
- package/dist/cramFile/container/compressionScheme.d.ts +2 -2
- package/dist/cramFile/encoding.d.ts +11 -11
- package/dist/cramFile/file.d.ts +4 -4
- package/dist/cramFile/record.d.ts +5 -5
- package/dist/cramFile/sectionParsers.d.ts +7 -7
- package/dist/cramFile/slice/decodeRecord.d.ts +1 -1
- package/dist/cramFile/slice/index.d.ts +1 -1
- package/dist/cramFile/util.d.ts +1 -1
- package/dist/indexedCramFile.d.ts +2 -2
- package/dist/sam.d.ts +1 -1
- package/dist/typescript.d.ts +2 -2
- package/esm/craiIndex.d.ts +2 -2
- package/esm/cramFile/codecs/_base.d.ts +3 -3
- package/esm/cramFile/codecs/byteArrayLength.d.ts +1 -1
- package/esm/cramFile/codecs/dataSeriesTypes.d.ts +3 -3
- package/esm/cramFile/container/compressionScheme.d.ts +2 -2
- package/esm/cramFile/encoding.d.ts +11 -11
- package/esm/cramFile/file.d.ts +4 -4
- package/esm/cramFile/record.d.ts +5 -5
- package/esm/cramFile/sectionParsers.d.ts +7 -7
- package/esm/cramFile/slice/decodeRecord.d.ts +1 -1
- package/esm/cramFile/slice/index.d.ts +1 -1
- package/esm/cramFile/util.d.ts +1 -1
- package/esm/indexedCramFile.d.ts +2 -2
- package/esm/sam.d.ts +1 -1
- package/esm/typescript.d.ts +2 -2
- package/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gmod/cram",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "read CRAM files with pure Javascript",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "GMOD/cram-js",
|
|
@@ -57,29 +57,29 @@
|
|
|
57
57
|
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
|
|
58
58
|
"@babel/preset-typescript": "^7.17.12",
|
|
59
59
|
"@gmod/indexedfasta": "^2.0.2",
|
|
60
|
-
"@types/buffer-crc32": "^0.2.
|
|
61
|
-
"@types/jest": "^
|
|
60
|
+
"@types/buffer-crc32": "^0.2.2",
|
|
61
|
+
"@types/jest": "^29.2.4",
|
|
62
62
|
"@types/long": "^4.0.2",
|
|
63
63
|
"@types/md5": "^2.3.2",
|
|
64
64
|
"@types/pako": "^1.0.3",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
66
|
-
"@typescript-eslint/parser": "^5.
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
66
|
+
"@typescript-eslint/parser": "^5.46.1",
|
|
67
67
|
"buffer": "^6.0.3",
|
|
68
|
-
"documentation": "^
|
|
69
|
-
"eslint": "^8.
|
|
68
|
+
"documentation": "^14.0.1",
|
|
69
|
+
"eslint": "^8.30.0",
|
|
70
70
|
"eslint-config-prettier": "^8.5.0",
|
|
71
71
|
"eslint-plugin-import": "^2.25.4",
|
|
72
72
|
"eslint-plugin-prettier": "^4.0.0",
|
|
73
73
|
"glob": "^8.0.3",
|
|
74
|
-
"jest": "^
|
|
75
|
-
"mock-fs": "^5.
|
|
76
|
-
"prettier": "^2.
|
|
74
|
+
"jest": "^29.3.1",
|
|
75
|
+
"mock-fs": "^5.2.0",
|
|
76
|
+
"prettier": "^2.8.1",
|
|
77
77
|
"rimraf": "^3.0.2",
|
|
78
|
-
"ts-jest": "^
|
|
79
|
-
"typescript": "^4.
|
|
78
|
+
"ts-jest": "^29.0.3",
|
|
79
|
+
"typescript": "^4.9.4",
|
|
80
80
|
"url": "^0.11.0",
|
|
81
|
-
"webpack": "5.
|
|
82
|
-
"webpack-cli": "^
|
|
81
|
+
"webpack": "5.75.0",
|
|
82
|
+
"webpack-cli": "^5.0.1"
|
|
83
83
|
},
|
|
84
84
|
"publishConfig": {
|
|
85
85
|
"access": "public"
|