-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "@gmod/twobit",
"version": "4.0.1",
"description": "Read .2bit files in node or webpack",
"license": "MIT",
"main": "dist/index.js",
"module": "esm/index.js",
"repository": "GMOD/twobit-js",
"author": {
"name": "Robert Buels",
"email": "[email protected]",
"url": "https://github.com/rbuels"
},
"engines": {
"node": ">=6"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "vitest",
"format": "prettier --write .",
"coverage": "yarn test --coverage",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"docs": "documentation readme src/twoBitFile.ts --section=TwoBitFile",
"clean": "rimraf dist esm",
"prebuild": "yarn docs && yarn clean",
"build:esm": "tsc --outDir esm",
"build:es5": "tsc --module commonjs --outDir dist",
"build": "yarn build:esm && yarn build:es5",
"version": "standard-changelog && git add CHANGELOG.md",
"prepublishOnly": "yarn lint && yarn test --run && yarn build",
"postversion": "git push --follow-tags"
},
"keywords": [
"bionode",
"biojs"
],
"dependencies": {
"generic-filehandle2": "^1.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitest/coverage-v8": "^2.1.8",
"documentation": "^14.0.1",
"eslint": "^9.7.0",
"eslint-plugin-unicorn": "^56.0.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"standard-changelog": "^6.0.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
},
"publishConfig": {
"access": "public"
}
}