-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
49 lines (49 loc) · 1.03 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
{
"name": "layout",
"description": "Organize and layout items based on various algorithms",
"version": "2.2.0",
"homepage": "https://github.com/twolfson/layout",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/layout.git"
},
"bugs": {
"url": "https://github.com/twolfson/layout/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/twolfson/layout/blob/master/LICENSE-MIT"
}
],
"main": "lib/layout",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"lint": "jshint lib/ test/",
"test": "npm run lint && nodeunit test/"
},
"devDependencies": {
"grunt": "~1.4.0",
"grunt-cli": "~1.4.2",
"grunt-spritesmith": "~6.9.0",
"jshint": "~2.12.0",
"nodeunit": "~0.11.3"
},
"keywords": [
"layout",
"blueprint",
"organize",
"pack",
"algorithm"
],
"dependencies": {
"bin-pack": "~1.0.2"
}
}