-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 784 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 784 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
35
36
{
"name": "boxpacking",
"version": "0.0.4",
"description": "Packing algorithm",
"main": "index.js",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "git://github.com/Poplava/node-boxpacking.git"
},
"keywords": [
"binpack",
"boxpack",
"packing algorithm"
],
"author": "Igor Poplavsky <igor.poplava@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Poplava/node-boxpacking/issues"
},
"homepage": "https://github.com/Poplava/node-boxpacking",
"dependencies": {
"underscore": "^1.6.0"
},
"devDependencies": {
"grunt-cli": "^0.1.13",
"grunt-mocha-test": "^0.9.4",
"grunt": "^0.4.2",
"grunt-contrib-jshint": "^0.8.0"
},
"engines": {
"node": ">= 0.8.0"
}
}