-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
97 lines (97 loc) · 2.49 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "zarr",
"version": "0.6.3",
"description": "Javascript implementation of Zarr",
"keywords": [
"ndarray",
"zarr",
"module",
"utility",
"async"
],
"files": [
"lib/*",
"types/*",
"core.mjs",
"core.mjs.map",
"zarr.mjs",
"zarr.mjs.map",
"zarr.cjs",
"zarr.cjs.map",
"zarr.umd.js",
"zarr.umd.js.map"
],
"sideEffects": [
"./zarr.mjs"
],
"main": "zarr.cjs",
"module": "zarr.mjs",
"umd:main": "zarr.umd.js",
"typings": "types/zarr.d.ts",
"exports": {
".": {
"umd": "./zarr.umd.js",
"import": "./zarr.mjs",
"require": "./zarr.cjs"
},
"./core": {
"import": "./core.mjs"
}
},
"author": "Guido Zuidhof <me@guido.io>",
"contributors": [
"Trevor Manz <trevor.j.manz@gmail.com>"
],
"repository": {
"type": "git",
"url": "github.com/gzuidhof/zarr.js"
},
"license": "Apache-2.0",
"engines": {
"node": ">=12"
},
"scripts": {
"lint": "eslint src/**/* test/**/*",
"prebuild": "rimraf dist",
"build": "tsc && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
"test:browser": "TEST_ENV=browser jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache && npm run test:browser --no-cache",
"generate-typedocs": "typedoc --out docs/typedocs --theme minimal --readme none src",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "npm run build && cp -r ./dist/* .",
"postpublish": "git clean -fd"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@petamoriken/float16": "^3.6.6",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@web/test-runner": "^0.13.30",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"express": "^4.17.1",
"jest": "^27.2.3",
"jest-puppeteer": "^6.0.0",
"node-fetch": "^2.6.5",
"puppeteer": "^19.6.3",
"rimraf": "^3.0.2",
"rollup": "^2.57.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-visualizer": "^5.6.0",
"typedoc": "^0.22.4",
"typescript": "^4.4.3"
},
"dependencies": {
"numcodecs": "^0.2.2",
"p-queue": "^7.1.0"
}
}