UNPKG

phylogician-ts

Version:

Module to read, manipulate and write phylogenetic trees. Written in TypeScript

89 lines (88 loc) 2.34 kB
{ "name": "phylogician-ts", "version": "0.11.3-0", "description": "Module to read, manipulate and write phylogenetic trees. Written in TypeScript", "main": "lib/index.js", "module": "lib/index.browser.js", "unpkg": "lib/index.browser.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", "pretest": "npm run browserify", "test": "nyc mocha", "build": "tsc -p . ; npm run browserify", "browserify": "mkdir -p lib && browserify src/index.ts -p [ tsify --noImplicitAny ] -s Phylogician > lib/index.browser.js", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "buildDocs": "typedoc --out docs src" }, "nyc": { "extension": [ ".ts", ".tsx" ], "exclude": [ "**/*.d.ts" ], "include": [ "src/*ts" ], "reporter": [ "text", "html" ], "all": true }, "repository": { "type": "git", "url": "git+ssh://git@gitlab.com/phylogician/phylogician-ts.git" }, "keywords": [ "bioinformatics", "phylogenetics", "biology", "biowonks" ], "author": "Davi Ortega", "license": "CC0-1.0", "bugs": { "url": "https://gitlab.com/phylogician/phylogician-ts/issues" }, "homepage": "https://gitlab.com/phylogician/phylogician-ts#readme", "devDependencies": { "@types/chai": "^4.2.4", "@types/lodash": "^4.14.149", "@types/mocha": "^5.2.7", "@types/puppeteer": "^2.0.0", "browserify": "^16.5.0", "chai": "^4.2.0", "lodash": "^4.17.15", "mocha": "^6.2.3", "nyc": "^14.1.1", "prettier": "^1.18.2", "puppeteer": "^2.0.0", "source-map-support": "^0.5.16", "ts-node": "^8.4.1", "tsify": "^4.0.1", "tslint": "^5.20.0", "tslint-config-prettier": "^1.18.0", "typedoc": "^0.15.0", "typescript": "^3.6.4" }, "files": [ "lib/**/*" ], "dependencies": { "@types/d3": "^5.7.2", "@types/seedrandom": "^2.4.28", "d3": "^5.14.2", "loglevel-colored-prefix": "0.1.0-3", "newick-reader": "^1.3.0-1", "performance-now": "^2.1.0", "seedrandom": "^3.0.5" } }