-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 2.01 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
{
"name": "@gmod/tabix",
"version": "2.0.4",
"description": "Read Tabix-indexed files, supports both .tbi and .csi indexes",
"license": "MIT",
"repository": "GMOD/tabix-js",
"main": "dist/index.js",
"module": "esm/index.js",
"author": {
"name": "Robert Buels",
"email": "rbuels@gmail.com",
"url": "https://github.com/rbuels"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "vitest",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"docs": "documentation readme --shallow src/tabixIndexedFile.ts --section TabixIndexedFile",
"clean": "rimraf dist esm",
"prebuild": "npm run clean && npm run lint",
"build:esm": "tsc --outDir esm",
"build:es5": "tsc --module commonjs --outDir dist",
"build": "npm run build:esm && npm run build:es5",
"postbuild": "webpack",
"preversion": "npm run lint && npm test run && npm run build",
"prepublishOnly": "npm run lint && npm test run && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"keywords": [
"bionode",
"biojs",
"genomics"
],
"dependencies": {
"@gmod/abortable-promise-cache": "^2.0.0",
"@gmod/bgzf-filehandle": "^2.0.1",
"generic-filehandle2": "^1.0.0",
"quick-lru": "^4.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitest/coverage-v8": "^3.0.1",
"documentation": "^14.0.3",
"eslint": "^9.9.0",
"eslint-plugin-unicorn": "^56.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"standard-changelog": "^6.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.1",
"vitest": "^3.0.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"publishConfig": {
"access": "public"
}
}