-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 972 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
{
"name": "facty",
"version": "0.1.1",
"description": "Integer Factorization Approaches with JavaScript",
"keywords": [
"aks",
"factor",
"factoring",
"factorization",
"facty",
"fermat",
"integer factorization",
"pollard rho",
"prime factorization",
"prime"
],
"main": "src/index.js",
"bin": {
"facty": "bin/facty.js"
},
"scripts": {
"test": "mocha test/index --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramesaliyev/integer-factorization-with-js.git"
},
"author": "Rameş Aliyev <[email protected]> (http://ramesaliyev.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ramesaliyev/integer-factorization-with-js/issues"
},
"homepage": "https://github.com/ramesaliyev/integer-factorization-with-js#readme",
"dependencies": {
"mathjs": "5.1.0"
},
"devDependencies": {
"chai": "4.1.2",
"mocha": "5.2.0"
}
}