-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "jsfive",
"version": "0.3.13",
"description": "A pure javascript HDF5 file reader, based on pyfive",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
}
},
"browser": "./dist/browser/hdf5.js",
"scripts": {
"build": "npm run build_browser && npm run build_esm && npm run build_commonjs",
"build_browser": "esbuild index.js --bundle --sourcemap --target=es2020 --outfile=dist/browser/hdf5.js --format=iife --global-name=hdf5",
"build_commonjs": "esbuild index.js --bundle --sourcemap --target=es2020 --outfile=dist/cjs/index.js --format=cjs",
"build_esm": "esbuild index.js --bundle --format=esm --outfile=dist/esm/index.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/usnistgov/jsfive"
},
"keywords": [
"hdf5",
"javascript",
"es6",
"browser"
],
"author": "Brian B. Maranville",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/usnistgov/jsfive/issues"
},
"homepage": "https://github.com/usnistgov/jsfive#readme",
"dependencies": {
"pako": "^2.0.4"
},
"devDependencies": {
"esbuild": "^0.14.2"
},
"publishConfig": {
"access": "public"
}
}