-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 KB
/
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
{
"name": "list-distribution",
"version": "1.0.7",
"description": "A helper package for analyzing the distribution of a list based on a field in every item.",
"main": "lib/list-distribution.js",
"scripts": {
"start": "node lib/list-distribution.js",
"test": "mocha",
"test-travis-1": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"test-travis-2": "./node_modules/.bin/codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olivif/list-distribution.git"
},
"keywords": [
"list",
"distribution",
"analysis",
"statistics"
],
"author": "Olivia Ifrim",
"license": "MIT",
"bugs": {
"url": "https://github.com/olivif/list-distribution/issues"
},
"homepage": "https://github.com/olivif/list-distribution#readme",
"dependencies": {
"hashmap": "^2.0.4",
"round": "^2.0.1",
"typechecker": "^4.0.1"
},
"devDependencies": {
"codecov": ">1.0.0",
"istanbul": ">0.3.2",
"mocha": "^2.3.4",
"should": "^8.0.2",
"test-console": "^1.0.0"
}
}