-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "epiviz.heatmap.gl",
"version": "0.0.26",
"repository": "https://github.com/jkanche/epiviz.heatmap.gl",
"homepage": "https://github.com/jkanche/epiviz.heatmap.gl",
"author": {
"name": "Jayaram Kancherla",
"email": "jayaram.kancherla@gmail.com",
"url": "https://www.jkanche.com"
},
"bugs": "https://github.com/jkanche/epiviz.heatmap.gl/issues",
"keywords": [
"heatmap plot",
"visualization",
"webgl",
"webworkers"
],
"license": "MIT",
"type": "module",
"main": "dist/ehgl.js",
"module": "dist/index.js",
"dependencies": {
"d3-axis": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"epiviz.gl": "^1.0.18",
"tippy.js": "6.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^5.0.5",
"@surma/rollup-plugin-off-main-thread": "^2.2.3",
"gh-pages": "^3.2.3",
"postcss": "^8.4.33",
"rollup": "^1.29.0",
"rollup-plugin-postcss": "^4.0.2"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build",
"clean": "rm -rd dist/*",
"watchapp": "yarn clean && yarn dev && cp -r dist/* app",
"predeploy": "yarn clean && yarn build && cp -r dist/* app",
"deploy": "gh-pages -d app",
"jsdoc": "npx jsdoc src README.md -d docs/built -c docs/jsdoc.config.json"
},
"files": [
"dist"
]
}