-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 764 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 764 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
{
"name": "hclusterjs",
"version": "1.3.1",
"description": "Agglomerative Hierarchical Clustering in JavaScript.",
"main": "src/hcluster.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/*-test.js",
"build": "./node_modules/.bin/browserify src/hcluster.js -s hcluster -o hcluster.js && npm run build-min",
"build-min": "./node_modules/.bin/uglifyjs hcluster.js > hcluster.min.js"
},
"author": "Chris Polis (http://wwww.bytemuse.com)",
"contributors": [
"Matt Huyck (https://github.com/mhuyck)"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.3.0",
"mocha": "^2.3.3",
"browserify": "^13.1.0",
"uglify-js": "^2.7.5"
},
"dependencies": {
"distancejs": "^1.1.0",
"extend": "^3.0.0"
}
}