This repository has been archived by the owner on Apr 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "vitessce-image-loader",
"author": "Trevor James Manz",
"version": "0.0.0",
"description": "Utilities for loading single & multichannel zarr and tiff images.",
"module": "dist/vitessce-image-loader.esm.js",
"browser": "dist/vitessce-image-loader.umd.js",
"repository": {
"type": "git",
"url": "github.com/hubmapconsortium/vitessce-image-loader"
},
"scripts": {
"build": "tsc --emitDeclarationOnly && rollup -c",
"prebuild": "rm -rf dist",
"lint": "tsc --noEmit && eslint ./src/**/*.ts --quiet --fix",
"format": "./node_modules/.bin/prettier --write src/**/*.ts",
"format:check": "./node_modules/.bin/prettier --check src/**/*.ts",
"start": "rollup -c -w",
"test": "jest --coverage",
"test:watch": "npm run test -- --watch",
"test:prod": "npm run lint && npm run format:check && npm run test -- --no-cache"
},
"keywords": [
"zarr",
"module",
"utility",
"async",
"image"
],
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^3.1.1",
"@types/jest": "^25.1.3",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"minimist": ">=1.2.2",
"prettier": "1.19.1",
"rollup": "^1.32.1",
"ts-jest": "^25.2.1",
"tslib": "^1.11.1",
"typescript": "^3.8.0"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"singleQuote": true,
"printWidth": 100
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {
"zarr": "^0.2.3"
}
}