forked from eweitz/ideogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ideogram",
"version": "1.4.1",
"description": "Chromosome visualization with D3.js",
"main": "src/js/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"preferGlobal": true,
"bin": {
"ideogram": "cli/ideo-cli.js"
},
"scripts": {
"debugtest": "karma start --log-level debug --browsers Chrome karma.conf.js",
"test": "karma start --single-run --browsers ChromeHeadlessNoSandbox karma.conf.js",
"debugbuild": "node scripts/js/prepublish.js; webpack -p --display-modules --display-reasons && mkdir -p dist/data && cp -r data/{bands,annotations} dist/data",
"build": "node scripts/js/prepublish.js; webpack -p --mode production && mkdir -p dist/data && cp -r data/{bands,annotations} dist/data",
"watch": "webpack --watch && mkdir -p dist/data && cp -r data/{bands,annotations} dist/data",
"start": "webpack-dev-server --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eweitz/ideogram.git"
},
"keywords": [
"chromosome",
"ideogram",
"cytogenetics",
"genomics",
"visualization",
"d3"
],
"author": "Eric Weitz",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/eweitz/ideogram/issues"
},
"homepage": "https://eweitz.github.io/ideogram",
"dependencies": {
"commander": "^2.19.0",
"crossfilter": "1.3.12",
"d3-array": "^1.2.4",
"d3-brush": "^1.0.6",
"d3-dispatch": "^1.0.5",
"d3-fetch": "^1.1.2",
"d3-selection-multi": "1.0.1",
"d3-scale": "^1.0.6",
"d3-selection": "^1.3.2",
"es6-natural-sort": "1.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.4",
"chai": "^3.2.0",
"coveralls": "^3.0.2",
"eslint": "^4.6.1",
"eslint-config-google": "^0.5.0",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^3.3.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}