forked from bryanburgers/bin-pack
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 786 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 786 Bytes
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
{
"name": "bin-pack-plus",
"version": "0.0.4",
"description": "A packing algorithm for 2D bin packing. Largely based on code and a blog post by Jake Gordon and Bryan Burgers",
"author": {
"name": "Bryan Burgers",
"email": "bryan@burgers.io",
"url": "http://burgers.io"
},
"main": "index.js",
"keywords": [
"bin",
"rectangle",
"square",
"sprite",
"pack"
],
"license": "MIT",
"homepage": "https://github.com/tryangul/bin-pack",
"bugs": {
"url": "https://github.com/tryangul/bin-pack/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:tryangul/bin-pack.git"
},
"dependencies": {},
"devDependencies": {
"mocha": "~1.12.1"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha"
}
}