-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes code injection vulnerability reported by Synk.io. No longer uses eval (which is evil anyway).
- Loading branch information
Showing
2 changed files
with
25 additions
and
24 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
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,22 @@ | ||
{ | ||
"name": "pixl-class", | ||
"version": "1.0.2", | ||
"description": "A simple module for creating classes, with inheritance and mixins.", | ||
"author": "Joseph Huckaby <jhuckaby@gmail.com>", | ||
"homepage": "https://github.com/jhuckaby/pixl-class", | ||
"license": "MIT", | ||
"main": "class.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jhuckaby/pixl-class" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/jhuckaby/pixl-class/issues" | ||
}, | ||
"keywords": [ | ||
"oop", | ||
"class" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
"name": "pixl-class", | ||
"version": "1.0.3", | ||
"description": "A simple module for creating classes, with inheritance and mixins.", | ||
"author": "Joseph Huckaby <jhuckaby@gmail.com>", | ||
"homepage": "https://github.com/jhuckaby/pixl-class", | ||
"license": "MIT", | ||
"main": "class.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jhuckaby/pixl-class" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/jhuckaby/pixl-class/issues" | ||
}, | ||
"keywords": [ | ||
"oop", | ||
"class" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
} |