forked from igvteam/igv.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
63
64
65
{
"name": "igv",
"version": "2.10.0",
"main": "dist/igv.esm.js",
"browser": "dist/igv.js",
"module": "dist/igv.esm.js",
"description": "Embeddable genomic visualization component based on the Integrative Genomics Viewer",
"files": [
"dist/**"
],
"scripts": {
"prepack": "npm run build",
"build": "node scripts/updateVersion.js && node scripts/generateEmbedCss.js && npx rollup --config",
"test": "mocha -u tdd -r esm"
},
"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"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/igvteam/igv.js.git"
},
"browserslist": "> 1%, not dead",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-regenerator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"chai": "^4.2.0",
"core-js": "^3.6.4",
"eslint": "^6.4.0",
"esm": "^3.2.25",
"igv-ui": "git+https://github.com/igvteam/igv-ui.git#v1.2.0",
"igv-utils": "git+https://github.com/igvteam/igv-utils.git#v1.3.2",
"mocha": "^8.1.3",
"regenerator-runtime": "^0.13.3",
"rollup": "^2.28.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-strip": "^1.2.2",
"rollup-plugin-terser": "^7.0.2",
"w3c-xmlhttprequest": "^3.0.0",
"xmldom": "^0.6.0"
}
}