-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2 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
{
"name": "higlass-pileup",
"version": "1.6.2",
"description": "HiGlass Pileup Track",
"keywords": [
"HiGlass",
"Track"
],
"author": "Peter Kerpedjiev",
"license": "MIT",
"contributors": [
{
"name": "Peter Kerpedjiev",
"url": "http://github.com/pkerpedjiev"
}
],
"repository": {
"type": "git",
"url": "git://github.com/higlass/higlass-pileup.git"
},
"main": "src/index.js",
"unpkg": "dist/higlass-pileup.min.js",
"module": "./es",
"files": [
"dist",
"es"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"before-build-webpack": "^0.2.11",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.5.2",
"prettier": "^2.1.2",
"string-replace-loader": "^2.2.0",
"style-loader": "^0.20.3",
"terser-webpack-plugin": "^4.2.3",
"threads-plugin": "^1.4.0",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.20.2",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.1.1",
"webpack-plugin-replace": "^1.2.0"
},
"scripts": {
"build-es": "rm -rf ./es/* && npx babel ./src/ --out-dir ./es/ --env-name esm",
"build": "npm run build-es && webpack --mode production",
"start": "webpack serve --mode development --port 8087 -c webpack.config.js",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist"
},
"dependencies": {
"@gmod/bam": "1.1.8",
"d3-array": "^2.3.1",
"d3-dsv": "^1.1.1",
"d3-request": "^1.0.6",
"d3-scale": "^3.0.1",
"d3-format": "^3.0.1",
"higlass-register": "^0.1.0",
"lru-cache": "^6.0.0",
"raw-loader": "^4.0.2",
"threads": "v1.7.0"
}
}