-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.38 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.38 KB
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
{
"name": "@gmod/tabix",
"version": "3.3.1",
"description": "Read Tabix-indexed files, supports both .tbi and .csi indexes",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"import": "./esm/index.js"
},
"require": {
"require": "./dist/index.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GMOD/tabix-js.git"
},
"main": "dist/index.js",
"module": "esm/index.js",
"author": {
"name": "Robert Buels",
"email": "rbuels@gmail.com",
"url": "https://github.com/rbuels"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "vitest",
"benchonly": "vitest bench",
"bench": "./scripts/build-both-branches.sh \"$BRANCH1\" \"$BRANCH2\" && vitest bench",
"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": "yarn clean",
"build:esm": "tsc --target es2020 --outDir esm",
"build:es5": "tsc --target es2020 --module commonjs --moduleResolution bundler --outDir dist",
"postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
"build": "yarn build:esm && yarn build:es5",
"postbuild": "webpack",
"preversion": "yarn lint && yarn test run && yarn build",
"prepublishOnly": "yarn lint && yarn test run && yarn build",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"keywords": [
"bionode",
"biojs",
"genomics"
],
"dependencies": {
"@gmod/abortable-promise-cache": "^3.0.4",
"@gmod/bgzf-filehandle": "^6.0.12",
"@jbrowse/quick-lru": "^7.3.5",
"generic-filehandle2": "^2.1.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"documentation": "^14.0.3",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^64.0.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"standard-changelog": "^7.0.1",
"tsdown": "^0.21.6",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
},
"publishConfig": {
"access": "public"
}
}