-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.1 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.1 KB
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
63
64
65
66
67
68
69
70
{
"name": "igv",
"version": "3.8.0",
"main": "dist/igv.esm.js",
"browser": "dist/igv.js",
"module": "dist/igv.esm.js",
"types": "dist/igv.d.ts",
"type": "module",
"description": "Embeddable genomic visualization component based on the Integrative Genomics Viewer",
"files": [
"dist/**"
],
"scripts": {
"prepack": "npm run build",
"prepare": "npm run build",
"build": "node scripts/updateVersion.cjs && node scripts/compileSass.cjs && node scripts/generateEmbedCss.js && npx rollup --config && node scripts/copyArtifacts.cjs",
"build_iife": "node scripts/updateVersion.cjs && node scripts/compileSass.cjs && node scripts/generateEmbedCss.js && npx rollup --config rollup.config.iife.js && node scripts/copyArtifacts.cjs",
"updateCSS": "node scripts/compileSass.cjs && node scripts/generateEmbedCss.js",
"test": "mocha -ui tdd",
"build:dev-dashboard": "node scripts/buildDevDashboard.cjs"
},
"author": {
"name": "Jim Robinson"
},
"contributors": [
{
"name": "Douglass Turner"
}
],
"bugs": {
"url": "https://github.com/igvteam/igv.js/issues"
},
"deprecated": false,
"homepage": "https://igv.org",
"keywords": [
"IGV",
"genomics",
"visualization",
"bioinformatics"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/igvteam/igv.js.git"
},
"browserslist": "> 1%, not dead",
"devDependencies": {
"@gmod/cram": "^5.0.5",
"@rollup/plugin-strip": "^3.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@xmldom/xmldom": "^0.7.9",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"chai": "^4.3.7",
"circular-view": "github:igvteam/circular-view#v0.2.4",
"dompurify": "^3.0.9",
"eslint": "^6.4.0",
"fs-extra": "^11.3.0",
"hdf5-indexed-reader": "github:jrobinso/hdf5-indexed-reader#v1.0.2",
"hic-straw": "^2.1.3",
"igv-utils": "github:igvteam/igv-utils#v1.7.1",
"mocha": "^11.1.0",
"rollup": "^2.66.0",
"rollup-plugin-copy": "^3.3.0",
"sass": "^1.45.1",
"vanilla-picker": "^2.12.3",
"w3c-xmlhttprequest": "^3.0.0",
"ws": "^8.18.3"
}
}