forked from nikopavlica/canvassmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "canvassmith",
"description": "node-canvas engine for spritesmith",
"version": "1.1.0",
"homepage": "https://github.com/twolfson/canvassmith",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/canvassmith.git"
},
"bugs": {
"url": "https://github.com/twolfson/canvassmith/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/twolfson/canvassmith/blob/master/LICENSE-MIT"
}
],
"main": "lib/engine",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"lint": "twolfson-style lint lib/ test/",
"precheck": "twolfson-style precheck lib/ test/",
"pretest": "twolfson-style install",
"test": "npm run precheck && mocha --reporter dot --timeout 60000 && npm run lint"
},
"dependencies": {
"async": "~0.2.7",
"canvas": "~1.6.5",
"concat-stream": "~1.5.1",
"vinyl-file": "~1.3.0"
},
"devDependencies": {
"foundry": "~4.3.2",
"foundry-release-git": "~2.0.2",
"foundry-release-npm": "~2.0.2",
"jscs": "~2.4.0",
"jshint": "~2.8.0",
"mocha": "~1.21.4",
"spritesmith-engine-test": "~4.0.0",
"twolfson-style": "~1.6.1"
},
"keywords": [
"spritesmith",
"image",
"spritesmith-engine"
],
"foundry": {
"releaseCommands": [
"foundry-release-git",
"foundry-release-npm"
]
}
}