-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "@arpeely/sample-size-calculator",
"version": "1.0.3",
"description": "A/B test sample size calculator which uses a two-tailed sequential likelihood ratio test with false discovery rate controls to calculate statistical significance.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Arpeely/sample-size-calculator.git"
},
"keywords": [
"A/B test",
"sample-size",
"javascript",
"typescript"
],
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/Arpeely/sample-size-calculator/issues"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "yarn build",
"test": "jest --config jestconfig.json",
"prepublishOnly": "yarn test",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"publishConfig": {
"access": "public"
}
}