UNPKG

bioseq-ts

Version:

Biological Sequence in Javascript, written in Typescript.

90 lines (89 loc) 2.06 kB
{ "name": "bioseq-ts", "version": "0.3.3-0", "description": "Biological Sequence in Javascript, written in Typescript.", "main": "lib/index.js", "types": "lib/index.d.js", "scripts": { "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags", "test": "nyc mocha", "build": "tsc -p .", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "buildDocs": "typedoc --out docs src" }, "repository": { "type": "git", "url": "git+ssh://git@gitlab.com/daviortega/bioseq-ts.git" }, "nyc": { "extends": "@istanbuljs/nyc-config-typescript", "extension": [ ".ts", ".tsx" ], "exclude": [ "**/*.d.ts" ], "include": [ "src/*ts" ], "reporter": [ "text", "html" ], "all": true }, "mocha": { "require": [ "ts-node/register", "source-map-support/register" ], "extension": [ "ts" ], "all": true }, "keywords": [ "bioinformatics", "sequence", "FASTA", "PHYLIP", "biowonks", "biology" ], "author": "Davi Ortega", "license": "CC0-1.0", "bugs": { "url": "https://gitlab.com/daviortega/bioseq-ts/issues" }, "homepage": "https://gitlab.com/daviortega/bioseq-ts#readme", "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@types/chai": "^4.2.3", "@types/mocha": "^5.2.7", "@types/through2": "^2.0.36", "chai": "^4.2.0", "mocha": "^8.0.1", "nyc": "^15.1.0", "prettier": "^1.18.2", "source-map-support": "^0.5.13", "through2": "^4.0.2", "ts-node": "^8.4.1", "tslint": "^5.20.0", "tslint-config-prettier": "^1.18.0", "typedoc": "^0.15.0", "typescript": "^3.6.3" }, "files": [ "lib/**/*" ], "dependencies": { "@biowonks/aseq": "^0.1.2-1", "loglevel-colored-prefix": "0.1.0-3" } }