forked from higlass/higlass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 5.23 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "higlass",
"version": "1.3.1",
"description": "HiGlass Hi-C / genomic / large data viewer",
"author": "Peter Kerpedjiev <[email protected]>",
"main": "dist/hglib.js",
"unpkg": "dist/hglib.min.js",
"jsdelivr": "dist/hglib.min.js",
"files": [
"app",
"dist"
],
"keywords": [
"hi-c",
"genomics",
"matrix",
"tracks"
],
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development --content-base app",
"build": "rm -rf build/*; rm -rf dist/*; mkdir -p dist/; webpack --config ./webpack.config.js --mode development; cp build/hglib.js dist/; cp app/index.html dist/; cp build/hglib.css dist/hglib.css;",
"build-watch": "rm -rf build/*; rm -rf dist/*; mkdir -p dist/; webpack --config ./webpack.config.js --mode development --watch; cp build/hglib.js dist/; cp app/index.html dist/; cp build/hglib.css dist/hglib.css;",
"compile": "rm -rf build/*; rm -rf dist/*; mkdir -p dist/; webpack --config ./webpack.config.js --mode production; cp build/hglib.min.js dist/; cp build/hglib.js dist/; cp app/index.html dist/; cp build/hglib.css dist/hglib.css; zip -r dist.zip dist",
"lint": "eslint app test karma.conf.js webpack.config.js",
"lint-minimal": "eslint -c .eslintrc-minimal app test karma.conf.js webpack.config.js",
"fix-minimal": "eslint -c .eslintrc-minimal --fix app test karma.conf.js webpack.config.js",
"precommit": "lint-staged",
"test": "karma start karma.conf.js --single-run",
"test-watch": "npm run build && karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/higlass/higlass"
},
"license": "MIT",
"engines": {
"node": ">=0.12.0"
},
"peerDependencies": {
"pixi.js": "^4.8.2",
"react": "^16.6.3",
"react-bootstrap": "0.32.1",
"react-dom": "^16.6.3"
},
"dependencies": {
"box-intersect": "^1.0.1",
"css-element-queries": "github:marcj/css-element-queries",
"cwise": "^1.0.10",
"d3-array": "^1.2.1",
"d3-axis": "^1.0.4",
"d3-brush": "github:flekschas/d3-brush",
"d3-color": "^1.0.3",
"d3-drag": "^1.2.1",
"d3-dsv": "^1.0.8",
"d3-format": "^1.2.1",
"d3-geo": "^1.9.1",
"d3-queue": "^3.0.7",
"d3-request": "^1.0.6",
"d3-scale": "^1.0.7",
"d3-selection": "^1.2.0",
"d3-transition": "^1.1.1",
"d3-zoom": "^1.7.1",
"dom-scroll-into-view": "^1.2.1",
"enzyme-adapter-react-16": "^1.2.0",
"eventemitter3": "^2.0.2",
"ndarray": "^1.0.18",
"path": "^0.12.7",
"pixi.js": "^4.6.2",
"prop-types": "^15.6.0",
"pub-sub-es": "^1.1.0",
"react": "^16.6.3",
"react-autocomplete": "github:tiemevanveen/react-autocomplete#fix-176",
"react-bootstrap": "0.32.1",
"react-checkbox-tree": "^1.4.1",
"react-color": "^2.13.8",
"react-contextmenu": "^2.9.2",
"react-dimensions": "^1.3.1",
"react-dom": "^16.6.3",
"react-grid-layout": "^0.16.2",
"react-resizable": "^1.7.5",
"react-sortable-hoc": "^0.6.7",
"reactcss": "^1.2.3",
"robust-point-in-polygon": "^1.0.3",
"slugid": "^1.1.0",
"threads": "^0.7.2",
"transform-loader": "^0.2.3",
"unminified-webpack-plugin": "^2.0.0",
"url-join": "^1.1.0",
"url-parse": "^1.4.3",
"vkbeautify": "^0.99.3",
"webpack-dev-server": "^3.1.8",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^7.2.6",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-react-css-modules": "^3.4.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-airbnb": "^2.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.11.1",
"bootstrap": "^3.3.7",
"brfs": "1.4.3",
"browser-sync": "^2.24.7",
"chai": "^3.5.0",
"css-loader": "^0.28.8",
"del": "~2.2.0",
"enzyme": "^3.4.1",
"es6-promise": "~3.1.2",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "7.11.1",
"fast-css-loader": "^1.0.2",
"fast-sass-loader": "^1.4.6",
"font-awesome": "^4.7.0",
"fs": "0.0.2",
"husky": "^1.3.1",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"jquery": "^3.1.0",
"json-loader": "^0.5.4",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs2-launcher": "^0.5.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-verbose-reporter": "0.0.6",
"karma-webpack": "^2.0.9",
"lint-staged": "^8.1.1",
"main-bower-files": "^2.13.1",
"mini-css-extract-plugin": "^0.4.4",
"mversion": "^1.10.1",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.0.0",
"react-test-renderer": "^16.5.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.25.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}