UNPKG

@gmod/bed

Version:

A BED file format parser with autoSql support

64 lines (63 loc) 1.73 kB
{ "name": "@gmod/bed", "version": "2.1.7", "description": "A BED file format parser with autoSql support", "main": "dist/index.js", "module": "esm/index.js", "repository": "github:GMOD/bed-js", "author": { "name": "Colin Diesh", "email": "colin.diesh@gmail.com", "url": "https://github.com/cmdcolin" }, "license": "MIT", "homepage": "https://github.com/GMOD/bed-js", "bugs": { "url": "https://github.com/GMOD/bed-js/issues" }, "files": [ "dist", "esm", "src" ], "engines": { "node": ">=6" }, "scripts": { "lint": "eslint --report-unused-disable-directives --max-warnings 0 src test", "test": "vitest", "clean": "rimraf dist esm", "generate": "pegjs -o src/autoSql.ts autoSql.pegjs", "prebuild": "npm run clean", "build:esm": "tsc --target es2020 --outDir esm", "build:es5": "tsc --target es2020 --module commonjs --outDir dist", "postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json", "build": "npm run build:esm && npm run build:es5", "preversion": "npm test run && npm run build", "version": "standard-changelog && git add CHANGELOG.md", "postversion": "git push --follow-tags" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^8.4.0", "@typescript-eslint/parser": "^8.4.0", "@vitest/coverage-v8": "^3.0.3", "eslint": "^9.9.1", "pegjs": "^0.10.0", "prettier": "^3.3.3", "rimraf": "^6.0.1", "standard-changelog": "^6.0.0", "typescript": "^5.5.4", "typescript-eslint": "^8.4.0", "vitest": "^3.0.1" }, "keywords": [ "bed", "autosql", "genomics", "bionode", "biojs" ], "publishConfig": { "access": "public" } }