-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 KB
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
{
"name": "bayesian-duration-calculator",
"version": "1.0.0",
"description": "Analytical formula to estimate visitor required to obtain statistics in a Bayesian A/B test.",
"main": "src/conversionCalculator.js",
"scripts": {
"dev": "yarn install && cp git-hooks/* .git/hooks/ && chmod -R +x .git/hooks",
"lint": "eslint '**/*.js' --fix",
"lint-staged": "lint-staged",
"prepare": "husky install",
"prettier": "./node_modules/prettier/bin-prettier.js --write",
"test": "node tests/testConversion.js"
},
"author": "Anshul Gupta",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"(src|tests)/*.js": [
"yarn lint",
"prettier",
"git add"
],
"**/*.{json,md}": [
"prettier",
"git add"
]
},
"engineStrict": true,
"engines": {
"node": ">= 12.16.0"
}
}