-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "epiviz.scatter.gl",
"version": "0.0.5",
"repository": "https://github.com/jkanche/epiviz.scatter.gl",
"homepage": "https://github.com/jkanche/epiviz.scatter.gl",
"author": {
"name": "Jayaram Kancherla",
"email": "[email protected]",
"url": "https://www.jkanche.com"
},
"bugs": "https://github.com/jkanche/epiviz.scatter.gl/issues",
"keywords": [
"scatter plot",
"visualization",
"webgl",
"webworkers"
],
"license": "MIT",
"type": "module",
"main": "dist/esgl.js",
"module": "dist/index.js",
"dependencies": {
"epiviz.gl": "^1.0.4"
},
"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",
"@surma/rollup-plugin-off-main-thread": "^2.2.3",
"gh-pages": "^3.2.3",
"rollup": "^1.29.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build",
"clean": "rm -rd dist/*",
"predeploy": "yarn clean && yarn build && cp -r dist/* app",
"deploy": "gh-pages -d app"
},
"files": [
"dist"
]
}