-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 825 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 825 Bytes
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
{
"name": "@greenelab/hclust",
"version": "0.0.0-dev",
"description": "Agglomerative hierarchical clustering in JavaScript",
"keywords": [
"hierarchy",
"hierarchical",
"cluster",
"clustering",
"agglomerative",
"data",
"tree"
],
"author": "Vincent Rubinetti",
"license": "MIT",
"repository": "git+https://github.com/greenelab/hclust.git",
"main": "./build/hclust.min.js",
"module": "./build/hclust.min.js",
"scripts": {
"test": "bash ./scripts/build.sh && bash ./scripts/test.sh",
"build": "bash ./scripts/build.sh"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-jest": "^25.1.0",
"babel-preset-minify": "^0.5.1",
"jest": "^25.1.0"
},
"browserslist": "> 0.1%, not dead"
}