-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "generic-filehandle",
"description": "uniform interface for accessing binary data from local files, remote HTTP resources, and browser Blob data",
"version": "3.2.0",
"main": "dist/index.js",
"module": "esm/index.js",
"repository": "GMOD/generic-filehandle",
"license": "MIT",
"author": {
"name": "Colin Diesh",
"email": "[email protected]",
"url": "https://github.com/cmdcolin"
},
"engines": {
"node": ">=12"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 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": {
"es6-promisify": "^6.1.1"
},
"devDependencies": {
"@types/fetch-mock": "^7.3.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/range-parser": "^1.2.7",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"cross-fetch": "^4.0.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^54.0.0",
"fetch-mock": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"range-parser": "^1.2.1",
"rimraf": "^6.0.0",
"standard-changelog": "^6.0.0",
"tenacious-fetch": "^2.3.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"browser": {
"./dist/localFile.js": false,
"./esm/localFile.js": false,
"file-uri-to-path": false
}
}