-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "number-theory-2",
"version": "0.8.0",
"description": "A modern JavaScript library for number theory and modular arithmetic — including primes, totients, modular inverses, and more.",
"main": "src/index.js",
"type": "module",
"keywords": [
"number theory",
"math",
"modular arithmetic",
"prime",
"cryptography",
"totient",
"mobius",
"gcd",
"lcm"
],
"author": {
"name": "Aayush Mainali",
"email": "aayushmainali.codes@gmail.com",
"url": "https://github.com/AayushMainali-Github"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AayushMainali-Github/number-theory-2.git"
},
"bugs": {
"url": "https://github.com/AayushMainali-Github/number-theory-2/issues"
},
"homepage": "https://github.com/AayushMainali-Github/number-theory-2#readme",
"scripts": {
"lint": "eslint src --fix",
"test": "node --test",
"build": "rollup -c",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"eslint": "^9.38.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"rollup": "^4.52.5"
},
"engines": {
"node": ">=18.0.0"
}
}