-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "bigint-factorial",
"version": "1.1.3",
"description": "Tiny factorial function using BigInt",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "npm run lint && jest",
"docs": "jsdoc2md --template template.hbs index.js > README.md",
"release": "standard-version",
"prerelease": "npm run docs && npm run test",
"lint": "eslint ."
},
"engines": {
"node": ">=10.24.1"
},
"files": [],
"repository": {
"type": "git",
"url": "git+https://github.com/polarstoat/bigint-factorial.git"
},
"keywords": [
"BigInt",
"Factorial",
"Math",
"Probability",
"Statistics"
],
"author": "Polar stoat <[email protected]> (https://github.com/polarstoat)",
"license": "MIT",
"bugs": {
"url": "https://github.com/polarstoat/bigint-factorial/issues"
},
"homepage": "https://github.com/polarstoat/bigint-factorial#readme",
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.4.7",
"jsdoc-to-markdown": "^7.1.0",
"standard-version": "^9.3.2"
}
}