forked from selaux/node-sprite-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added package.json for publishing to NPM
- Loading branch information
Jaime Olivares
committed
Jul 6, 2016
1 parent
83797f6
commit 85a7fe0
Showing
1 changed file
with
30 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,32 @@ | ||
{ | ||
"name": "sprite-css", | ||
"version": "1.0.0", | ||
"description": "Generates image sprites and their stylesheets from sets of images with a pure-javascript renderer.", | ||
"main": "lib/nsg.js", | ||
"dependencies": { | ||
"async": "1.2.0", | ||
"bin-pack": "1.0.1", | ||
"glob": "5.0.10", | ||
"jimp": "0.2.21", | ||
"mkdirp": "0.5.1", | ||
"underscore": "1.8.3" | ||
}, | ||
"devDependencies": { | ||
}, | ||
"scripts": { | ||
}, | ||
"keywords": [ | ||
"sprite", | ||
"sprites", | ||
"generator", | ||
"css" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/jaime-olivares/sprite-css" | ||
}, | ||
"license": "MIT" | ||
"name": "sprite-css", | ||
"version": "1.0.2", | ||
"description": "Generates image sprites and their stylesheets from sets of images with a pure-javascript renderer.", | ||
"main": "lib/nsg.js", | ||
"dependencies": { | ||
"async": "1.2.0", | ||
"bin-pack": "1.0.1", | ||
"glob": "5.0.10", | ||
"jimp": "0.2.21", | ||
"mkdirp": "0.5.1", | ||
"underscore": "1.8.3" | ||
}, | ||
"devDependencies": {}, | ||
"scripts": {}, | ||
"keywords": [ | ||
"sprite", | ||
"sprites", | ||
"generator", | ||
"css" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/jaime-olivares/sprite-css.git" | ||
}, | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/jaime-olivares/sprite-css/issues" | ||
}, | ||
"homepage": "https://github.com/jaime-olivares/sprite-css#readme", | ||
"author": "Jaime Olivares" | ||
} |