@apr144/generic-filehandle
Version:
uniform interface for accessing binary data from local files, remote HTTP resources, and browser Blob data
79 lines (78 loc) • 2.25 kB
JSON
{
"name": "@apr144/generic-filehandle",
"description": "uniform interface for accessing binary data from local files, remote HTTP resources, and browser Blob data",
"version": "3.1.1-020925-001",
"main": "dist/index.js",
"module": "esm/index.js",
"repository": "alexpreynolds/generic-filehandle",
"license": "MIT",
"author": {
"name": "Colin Diesh",
"email": "colin.diesh@gmail.com",
"url": "https://github.com/cmdcolin"
},
"engines": {
"node": ">=12"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"lint": "eslint --ext .ts src test",
"clean": "rimraf dist esm",
"prebuild": "npm run clean",
"build:esm": "tsc --target es2018 --outDir esm",
"build:es5": "tsc --target es2015 --module commonjs --outDir dist",
"build": "npm run build:esm && npm run build:es5",
"watch": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline --watch",
"preversion": "npm run lint && npm test && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push --follow-tags"
},
"keywords": [
"bionode",
"biojs",
"ucsc",
"genomics"
],
"dependencies": {
"base-64": "^1.0.0",
"es6-promisify": "^6.1.1"
},
"devDependencies": {
"@types/base-64": "^1.0.2",
"@types/fetch-mock": "^7.3.0",
"@types/jest": "^29.2.4",
"@types/node": "^12.12.6",
"@types/range-parser": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"cross-fetch": "^3.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-prettier": "^4.2.1",
"fetch-mock": "^9.7.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.1",
"range-parser": "^1.2.1",
"rimraf": "^3.0.2",
"standard-changelog": "^2.0.24",
"tenacious-fetch": "^2.3.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
},
"browser": {
"./dist/localFile.js": false,
"./esm/localFile.js": false,
"file-uri-to-path": false
}
}