-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 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
{
"name": "domino-tiling",
"version": "0.1.0",
"description": "This repository contains a library for solving domino tiling problems using BigInt and standard JavaScript. It provides a method to calculate the number of ways to tile a 2D grid with 2x1 and 1x2 dominoes.",
"keywords": [
"domino-tiling",
"dimer-coverings",
"A004003",
"BigInt",
"JavaScript",
"algorithm",
"combinatorics"
],
"author": {
"name": "Dawid Ryłko",
"url": "https://dawidrylko.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dawidrylko/domino-tiling.git"
},
"bugs": {
"url": "https://github.com/dawidrylko/domino-tiling/issues"
},
"homepage": "https://github.com/dawidrylko/domino-tiling#readme",
"scripts": {
"start": "node benchmarkRunner.js -n 1000",
"test": "node testRunner.js -m 7"
}
}