-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "ab-test-result",
"version": "1.1.1",
"description": "Returns the improvement rate of your AB-test and answers if it's statistically significant",
"main": "index.js",
"dependencies": {
"bignumber.js": "4.0.2",
"simple-statistics": "4.1.1"
},
"devDependencies": {
"@debitoor/eslint-config-debitoor": "1.5.0",
"chai": "4.1.1",
"coveralls": "2.13.1",
"istanbul": "0.4.5",
"mocha": "3.5.0",
"mocha-eslint": "4.1.0"
},
"scripts": {
"test": "istanbul cover _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debitoor/ab-test-result.git"
},
"keywords": [
"AB-test",
"statistically significant"
],
"author": "debitoor",
"license": "MIT",
"bugs": {
"url": "https://github.com/debitoor/ab-test-result/issues"
},
"homepage": "https://github.com/debitoor/ab-test-result#readme"
}