forked from jnu/clusterfck
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 958 Bytes
/
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
{
"name": "tayden-clusterfck",
"description": "K-means and hierarchical clustering",
"version": "0.7.1",
"author": "Heather Arthur <[email protected]>",
"contributors": [
"Taylor Denouden <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/tayden/clusterfck.git"
},
"directories": {
"test": "test",
"build": "gulp build"
},
"dependencies": {},
"devDependencies": {
"babel": "^6.5.1",
"babel-core": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"chai": "*",
"mocha": "*",
"webpack": "1.12.13"
},
"main": "./lib/clusterfck",
"bugs": {
"url": "https://github.com/tayden/clusterfck/issues"
},
"homepage": "https://github.com/tayden/clusterfck#readme",
"scripts": {
"build": "webpack -p",
"test": "mocha --compilers js:babel-core/register --recursive"
},
"license": "MIT",
"babel": {
"presets": [
"es2015"
]
}
}