-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 818 Bytes
/
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
{
"author": {
"name": "Franklin",
"email": "[email protected]",
"url": "https://fvdm.com"
},
"name": "fibonacci",
"description": "Calculate fibonacci numbers for endless iterations.",
"version": "1.6.11",
"repository": {
"type": "git",
"url": "git://github.com/fvdm/nodejs-fibonacci.git"
},
"bugs": {
"url": "https://github.com/fvdm/nodejs-fibonacci/issues"
},
"main": "fibonacci.js",
"files": [
"example.js"
],
"tonicExampleFilename": "example.js",
"dependencies": {
"bn.js": "^5.2.1"
},
"devDependencies": {
"dotest": "^2.12.2"
},
"engines": {
"node": ">=16"
},
"keywords": [
"bignum",
"fibonacci",
"generator",
"iterator",
"math",
"sequence"
],
"license": "Unlicense",
"scripts": {
"test": "dotest"
}
}