-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "hic-straw",
"version": "2.1.2",
"description": "Utilities for reading .files (contact matrix files)",
"main": "dist/hic-straw.js",
"module": "dist/hic-straw.esm.js",
"type": "module",
"files": [
"dist/**",
"src/**",
"cli.js"
],
"scripts": {
"prepare": "npm run build",
"build": "npx del-cli dist && npx rollup --config",
"test": "mocha -ui tdd",
"prepack": "npm run build",
"fix-mocha": "npx uni -D mocha && npx i -D mocha"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.11.4",
"@babel/plugin-transform-regenerator": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-strip": "^2.1.0",
"acorn": "^7.4.0",
"chai": "^4.2.0",
"core-js": "^3.25.0",
"del-cli": "^3.0.1",
"mocha": "^10.2.0",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.79.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igvteam/hic-straw.git"
},
"keywords": [
"hic",
"contact-matrix",
"juicebox"
],
"author": "Jim Robinson <igv-team@broadinstitute.org> (https://igv.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/igvteam/hic-straw/issues"
},
"bin": {
"straw": "cli.js"
},
"homepage": "https://github.com/igvteam/hic-straw#readme"
}