-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
86 lines (86 loc) · 2.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@gmod/cram",
"version": "3.0.6",
"description": "read CRAM files with pure Javascript",
"license": "MIT",
"repository": "GMOD/cram-js",
"main": "dist/index.js",
"module": "esm/index.js",
"author": {
"name": "Robert Buels",
"email": "[email protected]",
"url": "https://github.com/rbuels"
},
"engines": {
"node": ">=6"
},
"files": [
"errors.js",
"src",
"dist",
"esm"
],
"scripts": {
"test": "vitest",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"docs": "documentation readme --shallow src/indexedCramFile.ts --section=IndexedCramFile; documentation readme --shallow src/cramFile/file.ts --section=CramFile; documentation readme --shallow src/craiIndex.ts --section=CraiIndex; documentation readme --shallow errors.ts '--section=Exception Classes'; documentation readme --shallow src/cramFile/file.ts --section=CramFile; documentation readme --shallow src/cramFile/record.ts --section=CramRecord",
"prebuild": "npm run clean",
"clean": "rimraf dist esm",
"build:esm": "tsc --target es2018 --outDir esm",
"build:es5": "tsc --target es2015 --module commonjs --outDir dist",
"build": "npm run build:esm && npm run build:es5",
"postbuild": "webpack",
"prepack": "npm test run && npm run build && cp dist/errors.js errors.js",
"postpublish": "rm errors.js",
"postversion": "git push --follow-tags"
},
"keywords": [
"cram",
"genomics",
"bionode",
"biojs"
],
"dependencies": {
"@jkbonfield/htscodecs": "^0.5.1",
"bzip2": "^0.1.1",
"crc": "^4.3.2",
"long": "^4.0.0",
"md5": "^2.2.1",
"pako": "^1.0.4",
"quick-lru": "^4.0.1",
"xz-decompress": "^0.2.1"
},
"devDependencies": {
"@gmod/indexedfasta": "^2.1.0",
"@types/long": "^4.0.0",
"@types/md5": "^2.3.2",
"@types/pako": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.5",
"buffer": "^6.0.3",
"documentation": "^14.0.3",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^55.0.0",
"mock-fs": "^5.2.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"typescript": "^5.0.3",
"typescript-eslint": "^8.0.1",
"vitest": "^2.0.5",
"webpack": "^5.90.3",
"webpack-cli": "^5.0.1"
},
"publishConfig": {
"access": "public"
},
"browser": {
"./dist/io/localFile.js": false,
"./esm/io/localFile.js": false,
"./esm/unzip.js": "./esm/unzip-pako.js",
"./dist/unzip.js": "./dist/unzip-pako.js"
}
}