-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.19 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.19 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
{
"name": "@gmod/nclist",
"version": "3.0.7",
"description": "Read features from JBrowse 1 format nested containment list JSON",
"type": "module",
"main": "dist/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/GMOD/nclist-js.git"
},
"author": {
"name": "Robert Buels",
"email": "rbuels@gmail.com",
"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"
],
"scripts": {
"test": "vitest",
"clean": "rimraf dist esm",
"format": "prettier --write .",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"prebuild": "pnpm clean",
"build:esm": "tsc --outDir esm",
"build:es5": "tsc --module commonjs --moduleResolution bundler --outDir dist",
"postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
"preversion": "pnpm lint && pnpm test --run && pnpm build",
"postversion": "git push --follow-tags",
"build": "pnpm build:esm && pnpm build:es5",
"coverage": "pnpm test --coverage",
"docs": "documentation readme --shallow src/feature_store.ts --section API",
"prepublishOnly": "pnpm test --run && pnpm build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"cross-fetch": "^4.1.0",
"documentation": "^14.0.3",
"eslint": "^10.2.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-unicorn": "^64.0.0",
"express": "^5.2.1",
"generic-filehandle2": "^2.1.4",
"get-port": "^7.2.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
},
"dependencies": {
"@gmod/abortable-promise-cache": "^3.0.4",
"@jbrowse/quick-lru": "^7.3.5",
"@jridgewell/resolve-uri": "^3.1.2"
},
"keywords": [
"jbrowse",
"genomics",
"bionode",
"biojs"
],
"publishConfig": {
"access": "public"
}
}