forked from bryanburgers/bin-pack
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 879 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": "bin-pack-with-constraints",
"version": "1.0.1",
"description": "A packing algorithm for 2D bin packing that allows setting a max width or height. Largely based on code and a blog post by Jake Gordon and Bryan Burgers.",
"author": {
"name": "Enoch Riese",
"email": "[email protected]",
"url": "https://github.com/eriese"
},
"main": "index.js",
"keywords": [
"bin",
"rectangle",
"square",
"sprite",
"pack"
],
"license": "MIT",
"homepage": "https://github.com/eriese/bin-pack-with-constraints",
"bugs": {
"url": "https://github.com/eriese/bin-pack-with-constraints/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eriese/bin-pack-with-constraints.git"
},
"devDependencies": {
"mocha": "^10.2.0"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha"
}
}