-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
92 lines (92 loc) · 2.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "grunt-spritesmith",
"description": "Grunt task for converting a set of images into a spritesheet and corresponding CSS variables.",
"version": "6.10.0",
"homepage": "https://github.com/twolfson/grunt-spritesmith",
"author": {
"name": "Todd Wolfson",
"email": "todd@twolfson.com",
"url": "http://twolfson.com/"
},
"contributors": [
{
"name": "dpolivy"
},
{
"name": "pdehaan",
"url": "http://about.me/peterdehaan"
},
{
"name": "MoOx",
"email": "github@moox.io",
"url": "http://moox.io/"
},
{
"name": "jasonsandmeyer",
"url": "http://jasonsandmeyer.com"
},
{
"name": "scanieso",
"email": "scanieso@gmail.com"
},
{
"name": "STuFF",
"email": "nchalleil@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/twolfson/grunt-spritesmith.git"
},
"bugs": {
"url": "https://github.com/twolfson/grunt-spritesmith/issues"
},
"license": "MIT",
"main": "tasks/grunt-spritesmith.js",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"precheck": "eslint docs/ src/ src-test/ tasks/",
"lint": "eslint docs/ src/ src-test/ tasks/ --max-warnings 0",
"test": "npm run precheck && mocha src-test/ --reporter dot --timeout 5000 && npm run lint"
},
"dependencies": {
"async": "~2.6.4",
"spritesheet-templates": "^10.3.0",
"spritesmith": "^3.4.0",
"underscore": "~1.13.3",
"url2": "1.0.0"
},
"devDependencies": {
"eslint": "~4.19.1",
"eslint-config-twolfson": "~1.0.0",
"foundry": "~4.7.0",
"foundry-release-git": "~2.0.5",
"foundry-release-npm": "~2.1.0",
"get-pixels": "~3.2.3",
"gmsmith": "^1.2.0",
"grunt": "~1.5.2",
"grunt-cli": "~1.4.3",
"grunt-newer": "~1.3.0",
"mocha": "~8.4.0",
"rimraf": "~2.2.8",
"shell-quote": "~1.6.1"
},
"keywords": [
"grunt",
"gruntplugin",
"sprite",
"image",
"spritesheet",
"css",
"spritesmith",
"cross-platform"
],
"foundry": {
"releaseCommands": [
"foundry-release-git",
"foundry-release-npm"
]
}
}