-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
{
"name": "@gmod/bbi",
"version": "6.0.1",
"description": "Parser for BigWig/BigBed files",
"license": "MIT",
"repository": "GMOD/bbi-js",
"main": "dist/index.js",
"module": "esm/index.js",
"author": {
"name": "Colin Diesh",
"email": "[email protected]",
"url": "https://github.com/cmdcolin"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "vitest",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 src",
"format": "prettier",
"clean": "rimraf dist esm",
"prebuild": "npm run clean",
"build:esm": "tsc --outDir esm",
"build:es5": "tsc --module commonjs --outDir dist",
"build": "npm run build:esm && npm run build:es5",
"preversion": "npm run lint && npm test run && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push origin master --follow-tags"
},
"keywords": [
"bionode",
"biojs",
"bigwig",
"bigbed",
"ucsc",
"genomics"
],
"dependencies": {
"@gmod/abortable-promise-cache": "^2.0.0",
"generic-filehandle2": "^1.0.0",
"pako": "^2.0.0",
"quick-lru": "^4.0.0",
"rxjs": "^7.8.0"
},
"devDependencies": {
"@gmod/bed": "^2.1.2",
"@types/node": "^20.11.16",
"@types/pako": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.9.1",
"eslint-plugin-unicorn": "^56.0.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"standard-changelog": "^6.0.0",
"typescript": "^5.1.6",
"typescript-eslint": "^8.4.0",
"vitest": "^2.0.5"
},
"publishConfig": {
"access": "public"
},
"browser": {
"./esm/unzip.js": "./esm/unzip-pako.js",
"./dist/unzip.js": "./dist/unzip-pako.js"
}
}