forked from latonv/MillerRabinPrimality
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 892 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
{
"name": "primality-test",
"version": "4.2.0",
"description": "An implementation of the Miller-Rabin primality test to efficiently determine with high probability whether some arbitrarily-large number is prime.",
"main": "index.js",
"scripts": {
"test": "nyc mocha --reporter spec tests/*",
"build": "webpack"
},
"keywords": [
"prime",
"primality",
"composite",
"Miller-Rabin",
"number theory"
],
"author": "Laton Vermette (https://latonv.com)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
}
}