-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 847 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 847 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
37
{
"name": "atlaspack",
"description": "Pack rectangles (or images) into a rectangle (or canvas texture atlas).",
"version": "1.0.0",
"homepage": "https://github.com/shama/atlaspack",
"author": {
"name": "Kyle Robinson Young",
"email": "kyle@dontkry.com",
"url": "http://dontkry.com"
},
"repository": {
"type": "git",
"url": "git://github.com/shama/atlaspack.git"
},
"bugs": {
"url": "https://github.com/shama/atlaspack/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"start": "budo example/example.js:bundle.js",
"gh-pages": "browserify example/example.js -o bundle.js"
},
"devDependencies": {
"budo": "^8.2.2",
"painterly-textures": "0.0.3"
},
"keywords": [
"voxel",
"texture",
"atlas",
"geometry",
"spritemap"
]
}