-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "wilson-interval",
"version": "4.0.5",
"author": "Erik Fox <[email protected]> (http://erikfox.co)",
"description": "Used to calculate the high bound, low bound, and center of a Wilson score interval. Features support for continuity correction and Singleton's adjustment.",
"license": "MIT",
"homepage": "https://github.com/erikfox/wilson-interval",
"repository": {
"type": "git",
"url": "https://github.com/erikfox/wilson-interval.git"
},
"bugs": {
"url": "https://github.com/erikfox/wilson-interval/issues"
},
"keywords": [
"wilson",
"score",
"reddit",
"confidence",
"statistics",
"proportion",
"interval",
"rank",
"votes",
"upvotes",
"downvotes"
],
"main": "./lib/index.js",
"scripts": {
"dev": "npm run build -- --watch & npm test -- --watchAll & wait",
"build": "babel ./src/index.js --out-file ./lib/index.js",
"test": "jest --coverage",
"test-ci": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint src",
"precommit": "npm run lint && npm run test && npm run build && git add lib"
},
"dependencies": {
"mathjs": "^5.10.0",
"pnormaldist": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^24.8.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-jest": "^20.0.3",
"husky": "^0.14.3",
"jest": "^24.8.0"
}
}