-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "diophantine",
"description": "Solve linear diophantine equations",
"version": "1.1.0",
"author": "kevduc",
"license": "ISC",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest --coverage --json --outputFile=test-results.json",
"open-coverage": "start ./coverage/lcov-report/index.html",
"example": "node example.js",
"generate-doc": "jsdoc -c ./jsdoc.conf.json -R ./README.md",
"postgenerate-doc": "copyfiles -a './logo/diophantine.png' './docs'",
"open-doc": "start ./docs/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevduc/diophantine.git"
},
"bugs": {
"url": "https://github.com/kevduc/diophantine/issues"
},
"homepage": "https://github.com/kevduc/diophantine#readme",
"funding": [
{
"type": "Crypto (Coinbase)",
"url": "https://commerce.coinbase.com/checkout/97a05cdf-7d82-4f9a-9a24-fbbc65ac5a4d"
},
{
"type": "Chocolate",
"url": "https://commerce.coinbase.com/checkout/524c088f-9046-40ca-b2f4-605774b7b7fe"
}
],
"keywords": [
"solver",
"equation",
"mathematics",
"linear",
"maths",
"linear-equations",
"equations",
"equation-solver",
"solve",
"solving",
"linear-equation",
"solving-algorithm",
"diophantine-solver",
"diophantine",
"linear-equation-solver",
"diophantine-equation",
"linear-equations-solution",
"equations-solver",
"diophantine-equations",
"linear-solutions",
"degree"
],
"devDependencies": {
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"replace-in-file": "^6.2.0"
}
}