-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.58 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
{
"name": "higlass-range",
"version": "0.1.1",
"description": "A plugin track for plotting ranges",
"keywords": [
"HiGlass",
"Track",
"Whisker"
],
"author": "Fritz Lekschas",
"license": "MIT",
"contributors": [
{
"name": "Fritz Lekschas",
"url": "http://github.com/flekschas"
}
],
"repository": {
"type": "git",
"url": "git://github.com/higlass/range-track.git"
},
"main": "src/index.js",
"unpkg": "dist/higlass-range.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c; webpack --mode production; cp node_modules/higlass/dist/hglib.js ./docs; cp node_modules/higlass/dist/hglib.css ./docs",
"ghp": "npm run prerelease; rm -rf ../higlass-range-ghp/*; cp -r ./dist/* ../higlass-range-ghp/; touch ../higlass-range-ghp/.nojekyll; touch ../higlass-range-ghp/CNAME; echo 'higlass-range.lekschas.de' > ../higlass-range-ghp/CNAME; cp ./node_modules/higlass/dist/scripts/hglib.js ../higlass-range-ghp/; cp ./node_modules/higlass/dist/styles/hglib.css ../higlass-range-ghp/",
"lint": "eslint src rollup.config.js webpack.config.js; stylelint src",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
"start": "webpack-dev-server --mode development --open"
},
"dependencies": {
"d3-scale": "^2.1.2",
"higlass-register": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"acorn": "^6.0.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^v3.3.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"higlass": "1.6.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.4",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-visualizer": "^0.9.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.8.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-scss": "^3.4.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"hgDependencies": {
"higlass": "1.6.0"
}
}