@gmod/nclist
Version:
Read features from JBrowse 1 format nested containment list JSON
80 lines (79 loc) • 2.12 kB
JSON
{
"name": "@gmod/nclist",
"version": "3.0.4",
"description": "Read features from JBrowse 1 format nested containment list JSON",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"import": "./esm/index.js"
},
"require": {
"require": "./dist/index.js"
}
},
"repository": "github:GMOD/nclist-js",
"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"
],
"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",
"postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
"build": "yarn build:esm && yarn build:es5",
"prepublishOnly": "yarn test --run && yarn build",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@vitest/coverage-v8": "^4.0.6",
"cross-fetch": "^4.1.0",
"documentation": "^14.0.1",
"eslint": "^9.5.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^62.0.0",
"express": "^5.1.0",
"generic-filehandle2": "^2.0.1",
"get-port": "^7.1.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.0.4",
"typescript-eslint": "^8.18.0",
"vitest": "^4.0.6"
},
"dependencies": {
"@gmod/abortable-promise-cache": "^3.0.1",
"@jbrowse/quick-lru": "^7.3.5",
"@jridgewell/resolve-uri": "^3.1.2"
},
"keywords": [
"jbrowse",
"genomics",
"bionode",
"biojs"
],
"publishConfig": {
"access": "public"
}
}