-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
{
"name": "@gmod/nclist",
"version": "2.0.0",
"description": "Read features from JBrowse 1 format nested containment list JSON",
"main": "dist/index.js",
"module": "esm/index.js",
"repository": "github:GMOD/nclist-js",
"author": {
"name": "Robert Buels",
"email": "[email protected]",
"url": "https://github.com/rbuels"
},
"license": "MIT",
"homepage": "https://github.com/GMOD/nclist-js",
"bugs": {
"url": "https://github.com/GMOD/nclist-js/issues"
},
"files": [
"dist",
"esm",
"src"
],
"engines": {
"node": ">=8"
},
"scripts": {
"test": "vitest",
"coverage": "yarn test --coverage",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"docs": "documentation readme --shallow src/feature_store.ts --section API",
"clean": "rimraf dist esm",
"prebuild": "yarn docs && yarn clean && yarn lint",
"build:esm": "tsc --outDir esm",
"build:es5": "tsc --module commonjs --outDir dist",
"build": "yarn build:esm && yarn build:es5",
"prepublishOnly": "yarn test --run && yarn build",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-v8": "^3.0.1",
"cross-fetch": "^4.1.0",
"documentation": "^14.0.1",
"eslint": "^9.5.0",
"eslint-plugin-unicorn": "^56.0.1",
"express": "^4.18.2",
"generic-filehandle2": "^1.0.0",
"get-port": "^7.1.0",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"typescript": "^5.0.4",
"typescript-eslint": "^8.18.0",
"vitest": "^3.0.1"
},
"dependencies": {
"@gmod/abortable-promise-cache": "^2.0.0",
"@jridgewell/resolve-uri": "^3.1.2",
"quick-lru": "^4.0.0"
},
"keywords": [
"jbrowse",
"genomics",
"bionode",
"biojs"
],
"publishConfig": {
"access": "public"
}
}