-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.75 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
{
"name": "higlass-arcs",
"version": "0.3.4",
"description": "Arc tracks for HiGlass",
"keywords": [
"HiGlass",
"Track"
],
"author": "Peter Kerpedjiev",
"license": "MIT",
"contributors": [
{
"name": "Peter Kerpedjiev",
"url": "http://github.com/pkerpedjiev"
},
{
"name": "Fritz Lekschas",
"url": "http://github.com/flekschas"
}
],
"repository": {
"type": "git",
"url": "git://github.com/higlass/higlass-arcs.git"
},
"main": "dist/higlass-arcs.min.js",
"unpkg": "dist/higlass-arcs.min.js",
"files": [
"src",
"dist"
],
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"autoprefixer": "^10.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"gh-pages": "^3.1.0",
"higlass": "^1.11.5",
"html-webpack-plugin": "^4.5.0",
"prettier": "^2.2.1",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.11.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
"deploy": "rm -rf demo; npm run build; cp -r ./dist ./demo; touch ./demo/.nojekyll; cp node_modules/higlass/dist/hglib.* ./demo; gh-pages -d demo -t --git git"
},
"dependencies": {
"@flekschas/utils": "^0.27.0",
"higlass-register": "^0.3.0"
}
}