-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
{
"name": "locuszoom",
"version": "0.14.0",
"main": "dist/locuszoom.app.min.js",
"module": "esm/index.js",
"sideEffects": true,
"description": "Generate interactive visualizations of statistical genetic data",
"keywords": [
"visualization",
"genetics",
"genes",
"gwas",
"phewas"
],
"homepage": "https://github.com/statgen/locuszoom",
"license": "MIT",
"author": "University of Michigan Center for Statistical Genetics",
"contributors": [
"Christopher Clark",
"Matthew Flickinger",
"Ryan Welch",
"Peter VandeHaar",
"Andy Boughton <[email protected]>"
],
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/statgen/locuszoom.git"
},
"scripts": {
"echo_version": "echo \"export default '${npm_package_version}';\" > esm/version.js",
"test": "eslint esm/ test/ && mocha --recursive test",
"format": "eslint --fix esm/ test/",
"test:coverage": "nyc --reporter=text mocha --recursive test/**/*.js",
"css": "sass --style compressed ./css/locuszoom.scss ./dist/locuszoom.css",
"dev": "npm run css && webpack --watch --config webpack.dev.cjs",
"build": "npm run echo_version && npm run test && npm run css && webpack --config webpack.prod.cjs && npm run docs",
"docs": "./build_docs.sh"
},
"dependencies": {
"@hapi/topo": "^5.1.0",
"d3": "^5.16.0",
"gwas-credible-sets": "^0.1.0",
"just-clone": "^3.2.1",
"tabix-reader": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"babel-loader": "^9.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"chai": "^4.3.7",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.28.0",
"eslint-webpack-plugin": "^3.2.0",
"jsdoc": "^4.0.0",
"jsdom": "^20.0.3",
"jsdom-global": "^3.0.2",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"sinon": "^14.0.0",
"source-map-loader": "^4.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-merge": "^5.8.0"
}
}