-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 759 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 759 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
{
"name": "cumulative-distribution-function",
"version": "2.1.1",
"description": "create empirical cumulative distribution function from array of values",
"main": "index.js",
"repository": "drpaulbrewer/cumulative-distribution-function",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --reporter spec --slow 50 --timeout 2000",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"keywords": [
"statistics",
"distribution"
],
"author": "drpaulbrewer@gmail.com",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0",
"jshint": "^2.12.0",
"mocha": "^6.1.4",
"should": "^13.1.2"
},
"reveal": true
}