-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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": "higlass-bigwig-datafetcher",
"version": "0.2.0",
"description": "Bigwig Data Fetcher for HiGlass",
"private": false,
"author": "Alexander Veit",
"license": "MIT",
"contributors": [
{
"name": "Alexander Veit",
"url": "http://github.com/alexander-veit"
}
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/higlass/higlass-bigwig-datafetcher.git"
},
"devDependencies": {
"rimraf": "^3.0.2",
"cross-env": "^7.0.0",
"esbuild": "^0.14.42",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"jsdom": "^20.0.0",
"vite": "^4.3.0",
"vitest": "^0.23.4",
"npm-run-all": "^4.1.5"
},
"scripts": {
"build": "rimraf ./dist/ && npm run build-lib",
"build-lib": "npm run build-lib:prod && npm run build-lib:dev",
"build-lib:prod": "cross-env APP_ENV=production ESBUILD_MODE=build node ./bundle.mjs",
"build-lib:dev": "cross-env APP_ENV=development ESBUILD_MODE=build node ./bundle.mjs",
"start-lib": "cross-env ESBUILD_MODE=watch node ./bundle.mjs",
"start-app": "vite --config vite-demo.config.js --port 3000",
"start": "npm-run-all --parallel start-lib start-app",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
"test-watch": "vitest --config vite-test.config.js --watch",
"test": "vitest --config vite-test.config.js --run"
},
"dependencies": {
"@gmod/bbi": "^3.0.1",
"apr144-generic-filehandle": "3.1.1-042624-003",
"d3-scale": "^1.0.7",
"d3-dsv": "^3.0.1",
"d3-request": "^1.0.6",
"higlass-register": "^0.3.0",
"slugid": "^3.0.0"
}
}