-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 863 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
{
"name": "AdaStats",
"version": "1.0.0",
"description": "An embarrassingly basic, data agnostic statistics library. Supports binning a series into a set of ranges.",
"main": "dist/adastats.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "webpack",
"test": "mocha",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaburrows/StatisticsJS.git"
},
"keywords": [
"statistics",
"binning",
"data-agnostic"
],
"author": "Jillian Ada Burrows <[email protected]> (http://adaburrows.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/adaburrows/StatisticsJS/issues"
},
"homepage": "https://github.com/adaburrows/StatisticsJS#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.0",
"webpack": "^3.10.0"
}
}