-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
62
{
"name": "spritesmith",
"description": "Utility that takes images and creates a spritesheet with JSON sprite data",
"version": "3.5.1",
"homepage": "https://github.com/twolfson/spritesmith",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"contributors": [
"Alex Bain <[email protected]"
],
"repository": {
"type": "git",
"url": "git://github.com/twolfson/spritesmith.git"
},
"bugs": {
"url": "https://github.com/twolfson/spritesmith/issues"
},
"license": "MIT",
"main": "src/smith.js",
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"precheck": "eslint src/ src-test/",
"lint": "eslint src/ src-test/ --max-warnings 0",
"test": "npm run precheck && mocha src-test/ --timeout 60000 --reporter dot && npm run lint"
},
"dependencies": {
"concat-stream": "~1.5.1",
"layout": "~2.2.0",
"pixelsmith": "^2.3.0",
"semver": "~5.7.2",
"through2": "~2.0.0"
},
"devDependencies": {
"canvassmith": "~1.7.0",
"eslint": "~4.10.0",
"eslint-config-twolfson": "~1.0.0",
"foundry": "~4.3.2",
"foundry-release-git": "~2.0.2",
"foundry-release-npm": "~2.0.2",
"get-pixels": "~3.1.0",
"mocha": "~10.7.3",
"phantomjssmith": "~1.0.0",
"pixelmatch": "~4.0.2",
"vinyl": "~2.1.0"
},
"keywords": [
"sprite",
"spritesheet",
"css"
],
"foundry": {
"releaseCommands": [
"foundry-release-git",
"foundry-release-npm"
]
}
}