UNPKG

seqparse

Version:

Parse sequence files (GenBank, FASTA, SnapGene, SBOL) and accession IDs (NCBI, iGEM) to a common format

82 lines (81 loc) 2.26 kB
{ "name": "seqparse", "version": "0.2.1", "description": "Parse sequence files (GenBank, FASTA, SnapGene, SBOL) and accession IDs (NCBI, iGEM) to a common format", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "seqparse": "./dist/cli.js" }, "scripts": { "build": "rm -rf ./dist && webpack && chmod +x dist/cli.js", "fix": "prettier ./src/** --write && eslint src --ext ts,tsx --fix", "lint": "prettier ./src/** --check && eslint src --ext ts,tsx --quiet", "major": "./release.sh major", "minor": "./release.sh minor", "patch": "./release.sh patch", "test": "jest", "test:watch": "jest --watch" }, "files": [ "dist", "LICENSE", "README.md" ], "repository": { "type": "git", "url": "git+https://github.com/Lattice-Automation/seqparse.git" }, "keywords": [ "accession", "cli", "dna", "fasta", "genbank", "igem", "ncbi", "parsing", "rna" ], "author": "", "license": "MIT", "bugs": { "url": "https://github.com/Lattice-Automation/seqparse/issues" }, "homepage": "https://github.com/Lattice-Automation/seqparse#readme", "dependencies": { "buffer": "^6.0.3", "fast-xml-parser": "^4.0.13", "node-fetch": "^2.6.7", "stream": "^0.0.2", "timers": "^0.1.1" }, "devDependencies": { "@trivago/prettier-plugin-sort-imports": "^3.2.0", "@types/jest": "^28.1.8", "@types/node": "^18.7.15", "@types/node-fetch": "^2.6.2", "@types/xml2js": "^0.4.9", "@typescript-eslint/eslint-plugin": "^5.10.1", "@typescript-eslint/parser": "^5.10.1", "eslint": "^8.8.0", "eslint-plugin-sort-destructure-keys": "^1.4.0", "eslint-plugin-sort-keys-fix": "^1.1.2", "eslint-plugin-typescript-sort-keys": "^2.1.0", "jest": "^28.0.0", "jest-environment-jsdom": "^29.0.2", "jest-fetch-mock": "^3.0.3", "path-browserify": "^1.0.1", "prettier": "^2.5.1", "source-map-loader": "^1.1.3", "stream-browserify": "^3.0.0", "timers-browserify": "^2.0.12", "ts-jest": "^28.0.0", "ts-loader": "^8.3.0", "typescript": "^4.5.2", "url": "^0.11.0", "webpack": "^5.73.0", "webpack-cli": "^4.10.0", "webpack-node-externals": "^3.0.0" } }