readded UMD stuff, and package.json tests

This commit is contained in:
Evan Carroll
2015-11-02 18:18:18 -06:00
parent 0b8891e8c8
commit 904d09251b
3 changed files with 595 additions and 571 deletions
+2 -5
View File
@@ -1,7 +1,4 @@
2015-10-20 v0.3.3 2015-10-20 v0.4
@EvanCarroll - Updated to remove Grunt, and coffeescript stuff.
2015-11-01 v0.3.4
@EvanCarroll - Updated to remove Grunt, and coffeescript stuff, changed to use UMD.
@jpillora - Remove deprecated grunt file, there is now a single `notify.js` file @jpillora - Remove deprecated grunt file, there is now a single `notify.js` file
+570 -550
View File
File diff suppressed because it is too large Load Diff
+23 -16
View File
@@ -1,18 +1,25 @@
{ {
"title": "Notify.js", "title": "Notify.js",
"name": "notify", "name": "notify",
"version": "0.3.4", "version": "0.4.0",
"author": { "author": {
"name": "Jaime Pillora" "name": "Jaime Pillora"
}, },
"contributors": [ "contributors": [
{ {
"name": "Evan Carroll", "name": "Evan Carroll",
"url": "http://www.evancarroll.com", "url": "http://www.evancarroll.com",
"email": "me@evancarroll.com" "email": "me@evancarroll.com"
} }
], ],
"homepage": "http://notifyjs.com/", "homepage": "http://notifyjs.com/",
"license": "MIT", "license": "MIT",
"main": "dist/notify.js" "main": "dist/notify.js",
"scripts": {
"test": "npm run lint",
"lint": "jshint ./dist/*.js"
},
"dependencies": {
"jquery": "^2.1.4"
}
} }