-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated package name to be lowercase with dashes to match bower/npm standards
- Loading branch information
Showing
3 changed files
with
13 additions
and
11 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,22 +1,23 @@ | ||
{ | ||
"name": "SVGInjector", | ||
"version": "1.0.0", | ||
"name": "svg-injector", | ||
"version": "1.0.1", | ||
"homepage": "https://github.com/iconic/SVGInjector", | ||
"authors": [ | ||
"Iconic" | ||
"Waybury <[email protected]>" | ||
], | ||
"description": "Fast, caching, dynamic inline SVG DOM injection library", | ||
"main": "svg-injector.js", | ||
"moduleType": [ | ||
"node" | ||
"node", | ||
"amd", | ||
"globals" | ||
], | ||
"keywords": [ | ||
"SVG", | ||
"SVG", | ||
"injector", | ||
"images", | ||
"img", | ||
"htmlk", | ||
"html", | ||
"DOM" | ||
], | ||
"license": "MIT", | ||
|
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,9 +1,10 @@ | ||
{ | ||
"name": "SVGInjector", | ||
"name": "svg-injector", | ||
"description": "Fast, caching, dynamic inline SVG DOM injection library", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"author": { | ||
"name": "Waybury", | ||
"email": "[email protected]", | ||
"url": "http://waybury.com/" | ||
}, | ||
"main": "svg-injector.js", | ||
|
@@ -22,7 +23,7 @@ | |
], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"jshint": "^2.4.4", | ||
"jshint": "^2.5.0", | ||
"uglify-js": "^2.4.13", | ||
"github-changes": "0.0.10" | ||
}, | ||
|
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,6 +1,6 @@ | ||
// svg-injector.js 1.0.0 | ||
// svg-injector.js 1.0.1 | ||
// | ||
// Copyright (c) 2014 Waybury | ||
// Copyright (c) 2014 Waybury <[email protected]> | ||
// SVGInjector may be freely distributed under the MIT license. | ||
// | ||
// For full details and documentation: | ||
|