-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.34 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "https://json.schemastore.org/package",
"name": "nacci",
"version": "1.0.6",
"description": "Generate numbers in a k-bonacci sequence (where each term is the sum of the previous k terms) with customizable k, initial terms, strategies and data types (number, bigint, etc).",
"license": "MIT",
"author": "Michael Rojas <[email protected]> (https://github.com/havelessbemore)",
"homepage": "https://github.com/havelessbemore/nacci",
"bugs": "https://github.com/havelessbemore/nacci/issues",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"type": "module",
"main": "./dist/nacci.cjs",
"module": "./dist/nacci.mjs",
"types": "./dist/nacci.d.ts",
"exports": {
".": {
"import": "./dist/nacci.mjs",
"require": "./dist/nacci.cjs",
"types": "./dist/nacci.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/havelessbemore/nacci.git"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc && rollup -c",
"build:docs": "rimraf docs && typedoc",
"format": "prettier . --write",
"lint": "eslint .",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"keywords": [
"math",
"mathematics",
"lucas",
"fibonacci",
"tribonacci",
"tetranacci",
"pentanacci",
"kbonacci",
"nbonacci",
"numeric",
"number",
"sequence"
],
"devDependencies": {
"@eslint/js": "^9.7.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.4.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.3.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-license": "^3.5.2",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
}
}