-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (41 loc) · 886 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": "funzo",
"version": "0.2.0",
"description": "A bunch of descriptive statistics (and related) functions",
"main": "dist/funzo.min.js",
"browser": "dist/funzo.js",
"scripts": {
"prepublish": "tsc",
"test": "tsc && mocha ./dist/test/test.js"
},
"devDependencies": {
"typescript": "^1.8.10",
"chai": "~3.5.0",
"mocha": "~2.4.5"
},
"dependencies": {
},
"keywords": [
"funzo",
"statistics",
"data",
"mean",
"median",
"entropy",
"standard deviation",
"mutual information"
],
"repository": {
"url": "git+https://github.com/tomachalek/funzo.git",
"type": "git"
},
"author": "tomachalek",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tomachalek/funzo/issues"
},
"homepage": "https://github.com/tomachalek/funzo#readme",
"directories": {
"test": "test"
}
}