{"_id":"notie","_rev":"45-b23001339fa00f9d4d0ad7ba240e57dd","name":"notie","time":{"modified":"2022-06-22T06:10:17.869Z","created":"2015-11-03T09:02:59.329Z","0.0.1":"2015-11-03T09:02:59.329Z","0.0.11":"2015-11-03T09:25:06.877Z","0.0.12":"2015-11-03T09:41:28.701Z","0.0.13":"2015-11-03T10:21:34.245Z","0.0.14":"2015-11-03T13:21:49.714Z","0.0.15":"2015-11-03T15:24:37.197Z","2.1.0":"2015-11-19T04:34:24.463Z","3.0.0":"2016-03-26T21:43:08.426Z","3.1.0":"2016-04-20T15:14:47.341Z","3.2.0":"2016-04-22T18:47:05.969Z","3.3.0":"2016-07-13T16:40:20.053Z","3.3.1":"2016-07-17T18:37:28.192Z","3.8.0":"2016-07-18T18:55:30.021Z","3.8.1":"2016-07-18T19:06:22.008Z","3.8.2":"2016-07-19T01:24:01.397Z","3.8.3":"2016-07-19T14:58:32.229Z","3.8.4":"2016-07-19T20:37:13.885Z","3.8.5":"2016-07-23T16:23:36.099Z","3.9.0":"2016-07-26T06:18:26.896Z","3.9.1":"2016-07-31T14:54:51.256Z","3.9.2":"2016-08-13T17:46:48.510Z","3.9.3":"2016-09-08T02:04:22.069Z","3.9.4":"2016-09-08T02:16:17.086Z","3.9.5":"2016-12-16T14:50:06.824Z","4.0.0-rc.1":"2017-02-26T17:31:26.494Z","4.0.0-rc.2":"2017-02-26T20:34:08.685Z","4.0.0-rc.3":"2017-02-26T20:53:30.645Z","4.0.0":"2017-02-26T21:07:44.661Z","4.1.0":"2017-02-27T16:21:58.470Z","4.2.0":"2017-03-01T14:17:39.108Z","4.2.1":"2017-03-01T16:09:46.226Z","4.3.0":"2017-03-05T06:15:49.796Z","4.3.1":"2017-04-26T06:01:15.405Z"},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"dist-tags":{"latest":"4.3.1"},"description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","readme":"# notie\n\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)\n\nnotie is a clean and simple notification, input, and selection suite for javascript, with no dependencies.\ndemo: https://jaredreich.com/notie\n\n#### With notie you can:\n* Alert users\n* Confirm user choices\n* Allow users to input information\n* Allow users to select choices\n* Allow users to select dates\n\n![Alt text](/demo.gif?raw=true \"Demo\")\n\n## Features\n\n* Pure JavaScript, no dependencies, written in ES6\n* Easily customizable\n* Change colors to match your style/brand\n* Modify styling with the sass file (notie.scss) or overwrite the CSS\n* Font size auto-adjusts based on screen size\n\n## Browser Support\n\n* IE 10+\n* Chrome 11+\n* Firefox 4+\n* Safari 5.1+\n* Opera 11.5+\n\n## Installation\n\n#### HTML:\n```html\n<head>\n  ...\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"https://unpkg.com/notie/dist/notie.min.css\">\n  <style>\n    /* override styles here */\n    .notie-container {\n      box-shadow: none;\n    }\n  </style>\n</head>\n<body>\n  ...\n  <!-- Bottom of body -->\n  <script src=\"https://unpkg.com/notie\"></script>\n</body>\n```\n\n#### npm:\n```bash\nnpm install notie\n```\n\n\n## Usage\n\n#### ES6:\n```javascript\nimport notie from 'notie'\n// or\nimport { alert, force, confirm, input, select, date, setOptions, hideAlerts } from 'notie'\n```\n\n#### Browser:\n```javascript\nnotie\n// or\nwindow.notie\n```\n\n#### Available methods:\n```javascript\nnotie.alert({\n  type: Number|String, // optional, default = 4, enum: [1, 2, 3, 4, 5, 'success', 'warning', 'error', 'info', 'neutral']\n  text: String,\n  stay: Boolean, // optional, default = false\n  time: Number, // optional, default = 3, minimum = 1,\n  position: String // optional, default = 'top', enum: ['top', 'bottom']\n})\n\nnotie.force({\n  type: Number|String, // optional, default = 5, enum: [1, 2, 3, 4, 5, 'success', 'warning', 'error', 'info', 'neutral']\n  text: String,\n  buttonText: String, // optional, default = 'OK'\n  position: String, // optional, default = 'top', enum: ['top', 'bottom']\n  callback: Function // optional\n}, callbackOptional())\n\nnotie.confirm({\n  text: String,\n  submitText: String, // optional, default = 'Yes'\n  cancelText: String, // optional, default = 'Cancel'\n  position: String, // optional, default = 'top', enum: ['top', 'bottom']\n  submitCallback: Function, // optional\n  cancelCallback: Function // optional\n}, submitCallbackOptional(), cancelCallbackOptional())\n\nnotie.input({\n  text: String,\n  submitText: String, // optional, default = 'Submit'\n  cancelText: String, // optional, default = 'Cancel'\n  position: String, // optional, default = 'top', enum: ['top', 'bottom']\n  submitCallback: Function(value), // optional\n  cancelCallback: Function(value), // optional\n  autocapitalize: 'words', // default: 'none'\n  autocomplete: 'on', // default: 'off'\n  autocorrect: 'off', // default: 'off'\n  autofocus: 'true', // default: 'true'\n  inputmode: 'latin', // default: 'verbatim'\n  max: '10000',// default: ''\n  maxlength: '10', // default: ''\n  min: '5', // default: ''\n  minlength: '1', // default: ''\n  placeholder: 'Jane Smith', // default: ''\n  spellcheck: 'false', // default: 'default'\n  step: '5', // default: 'any'\n  type: 'text', // default: 'text'\n  allowed: ['an', 's'] // Default: null, 'an' = alphanumeric, 'a' = alpha, 'n' = numeric, 's' = spaces allowed. Can be custom RegExp, ex. allowed: new RegExp('[^0-9]', 'g')\n}, submitCallbackOptional(value), cancelCallbackOptional(value))\n\nnotie.select({\n  text: String,\n  cancelText: String, // optional, default = 'Cancel'\n  position: String, // optional, default = 'bottom', enum: ['top', 'bottom']\n  choices: [\n    {\n      type: Number|String, // optional, default = 1\n      text: String,\n      handler: Function\n    }\n    ...\n  ],\n  cancelCallback: Function // optional\n}, cancelCallbackOptional())\n\nnotie.date({\n  value: Date,\n  submitText: String, // optional, default = 'OK'\n  cancelText: String, // optional, default = 'Cancel'\n  position: String, // optional, default = 'top', enum: ['top', 'bottom']\n  submitCallback: Function(date), // optional\n  cancelCallback: Function(date) // optional\n}, submitCallbackOptional(date), cancelCallbackOptional(date))\n```\n\n#### For example:\n```javascript\nnotie.alert({ text: 'Info!' })\nnotie.alert({ type: 1, text: 'Success!', stay: true }) // Never hides unless clicked, or escape or enter is pressed\nnotie.alert({ type: 'success', text: 'Success!', time: 2 }) // Hides after 2 seconds\nnotie.alert({ type: 2, text: 'Warning<br><b>with</b><br><i>HTML</i><br><u>included.</u>' })\nnotie.alert({ type: 'warning', text: 'Watch it...' })\nnotie.alert({ type: 3, text: 'Error.', position: 'bottom' })\nnotie.alert({ type: 'error', text: 'Oops!' })\nnotie.alert({ type: 4, text: 'Information.' })\nnotie.alert({ type: 'info', text: 'FYI, blah blah blah.' })\n\nnotie.force({\n  type: 3,\n  text: 'You cannot do that, sending you back.',\n  buttonText: 'OK',\n  callback: function () {\n    notie.alert({ type: 3, text: 'Maybe when you\\'re older...' })\n  }\n})\n\nnotie.confirm({\n  text: 'Are you sure you want to do that?<br><b>That\\'s a bold move...</b>',\n  cancelCallback: function () {\n    notie.alert({ type: 3, text: 'Aw, why not? :(', time: 2 })\n  },\n  submitCallback: function () {\n    notie.alert({ type: 1, text: 'Good choice! :D', time: 2 })\n  }\n})\nnotie.confirm({ text: 'Are you sure?' }, function() {\n  notie.confirm({ text: 'Are you <b>really</b> sure?' }, function() {\n    notie.confirm({ text: 'Are you <b>really</b> <i>really</i> sure?' }, function() {\n      notie.alert({ text: 'Okay, jeez...' })\n    })\n  })\n})\n\nnotie.input({\n  text: 'Please enter your email:',\n  submitText: 'Submit',\n  cancelText: 'Cancel',\n  cancelCallback: function (value) {\n    notie.alert({ type: 3, text: 'You cancelled with this value: ' + value })\n  },\n  submitCallback: function (value) {\n    notie.alert({ type: 1, text: 'You entered: ' + value })\n  },\n  value: 'jane@doe.com',\n  type: 'email',\n  placeholder: 'name@example.com'\n})\n\nnotie.input({\n  text: 'Please enter your name:',\n  type: 'text',\n  placeholder: 'Jane Doe',\n  allowed: ['a', 's']\n}, function(value) {\n  notie.alert({ type: 1, text: 'You entered: ' + value })\n}, function(value) {\n  notie.alert({ type: 3, text: 'You cancelled with this value: ' + value })\n})\n\nnotie.input({\n  text: 'Please enter the price:',\n  cancelCallback: function (value) {\n    notie.alert({ type: 3, text: 'You cancelled with this value: ' + value })\n  },\n  submitCallback: function (value) {\n    notie.alert({ type: 1, text: 'You entered: ' + value })\n  },\n  type: 'text',\n  placeholder: '500',\n  allowed: new RegExp('[^0-9]', 'g')\n})\n\nnotie.select({\n  text: 'Demo item #1, owner is Jane Smith',\n  cancelText: 'Close',\n  cancelCallback: function () {\n    notie.alert({ type: 5, text: 'Cancel!' })\n  },\n  choices: [\n    {\n      text: 'Share',\n      handler: function () {\n        notie.alert({ type: 1, text: 'Share item!' })\n      }\n    },\n    {\n      text: 'Open',\n      handler: function () {\n        notie.alert({ type: 1, text: 'Open item!' })\n      }\n    },\n    {\n      type: 2,\n      text: 'Edit',\n      handler: function () {\n        notie.alert({ type: 2, text: 'Edit item!' })\n      }\n    },\n    {\n      type: 3,\n      text: 'Delete',\n      handler: function () {\n        notie.alert({ type: 3, text: 'Delete item!' })\n      }\n    }\n  ]\n})\n\nfunction date() {\n  notie.date({\n    value: new Date(2015, 8, 27),\n    cancelCallback: function (date) {\n      notie.alert({ type: 3, text: 'You cancelled: ' + date.toISOString() })\n    },\n    submitCallback: function (date) {\n      notie.alert({ type: 1, text: 'You selected: ' + date.toISOString() })\n    }\n  })\n}\n```\n\n#### Use ES6 for nicer code and to inherit `this`:\n``` javascript\nnotie.confirm({\n  text: 'Leave the page?',\n  submitCallback: () => this.location.href = 'https://google.com'\n})\n\nnotie.confirm({\n  text: 'Is ES6 great?',\n  cancelCallback: () => notie.alert({ type: 3, text: 'Why not?' }),\n  submitCallback: () => notie.alert({ type: 1, text: 'I Agree' })\n})\n\nnotie.force({\n  type: 3,\n  text: 'You cannot do that, sending you back.',\n  buttonText: 'OK',\n  callback: () => notie.alert({ type: 3, text: 'Maybe when you\\'re older...' })\n})\n```\n\n## Custom Styles\n\n#### SASS:\n```scss\n// Before notie is imported:\n$notie-color-success: #57BF57;\n$notie-color-warning: #D6A14D;\n$notie-color-error: #E1715B;\n$notie-color-info: #4D82D6;\n$notie-color-neutral: #A0A0A0;\n// See all overwriteable variables in src/notie.scss\n\n// Then import notie:\n@import '../../node_modules/notie/src/notie';\n```\n\n#### CSS:\n```css\n/* After notie styles are applied to DOM: */\n.notie-container {\n  box-shadow: none;\n}\n```\n\n## Options & Methods\n\n```javascript\n// Showing all available options with defaults\nnotie.setOptions({\n  alertTime: 3,\n  dateMonths: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']\n  overlayClickDismiss: true,\n  overlayOpacity: 0.75,\n  transitionCurve: 'ease',\n  transitionDuration: 0.3,\n  transitionSelector: 'all'\n  classes: {\n    container: 'notie-container',\n    textbox: 'notie-textbox',\n    textboxInner: 'notie-textbox-inner',\n    button: 'notie-button',\n    element: 'notie-element',\n    elementHalf: 'notie-element-half',\n    elementThird: 'notie-element-third',\n    overlay: 'notie-overlay',\n    backgroundSuccess: 'notie-background-success',\n    backgroundWarning: 'notie-background-warning',\n    backgroundError: 'notie-background-error',\n    backgroundInfo: 'notie-background-info',\n    backgroundNeutral: 'notie-background-neutral',\n    backgroundOverlay: 'notie-background-overlay',\n    alert: 'notie-alert',\n    inputField: 'notie-input-field',\n    selectChoiceRepeated: 'notie-select-choice-repeated',\n    dateSelectorInner: 'notie-date-selector-inner',\n    dateSelectorUp: 'notie-date-selector-up'\n  },\n  ids: {\n    overlay: 'notie-overlay'\n  },\n  positions: {\n    alert: 'top',\n    force: 'top',\n    confirm: 'top',\n    input: 'top',\n    select: 'bottom',\n    date: 'top'\n  }\n})\n```\n\n```javascript\n// programmatically hide all alerts with an optional callback function\nnotie.hideAlerts(callbackOptional)\n```\n\n## License\nMIT\n","versions":{"2.1.0":{"name":"notie","description":"A clean and simple notification plugin (alert/growl style) for javascript, with no dependencies.","author":{"name":"Jared Reich"},"version":"2.1.0","main":"notie.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.js.git"},"keywords":["tip"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie.js/issues"},"homepage":"https://jaredreich.com/projects/notie.js","gitHead":"0c209460f6dab9c3ddf5656615fa35385a1baf3d","_id":"notie@2.1.0","scripts":{},"_shasum":"ea5e9069a87bf8922a4eea4e62ff1d4eac2c38cb","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"ea5e9069a87bf8922a4eea4e62ff1d4eac2c38cb","tarball":"https://registry.npmjs.org/notie/-/notie-2.1.0.tgz","integrity":"sha512-qgOgiHqBr+clpWn9qc9qlsNlV6TNLMQ2WazZkU1fxiu3hEuO7ojXTjoHTjqYDjL4Y2kHc+JJjNt0hwyIqqyxGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIATZIjw708P+fzjFhlu6v5TPaxk1atmXDz2+rcZ26sKXAiEAhTTon3dOcRsO/u5rAT2Amzh+61tKWaI6QgVXy/Np1oc="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}]},"3.0.0":{"name":"notie","description":"notie - a clean and simple notification suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.0.0","main":"notie.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"bcb5ec5c690c6ad0d9339588193924519d1b1789","_id":"notie@3.0.0","scripts":{},"_shasum":"1444db735c2ad700bd7ea44f38b1db33f216d011","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.2","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"1444db735c2ad700bd7ea44f38b1db33f216d011","tarball":"https://registry.npmjs.org/notie/-/notie-3.0.0.tgz","integrity":"sha512-+NZlMHqK6No7/xNAtNzr7w3+3AlnzpdiT4QME6AABalurcK/UXNuH50chv7ENwD9m1qS5wIYdeboi6/f6TmAOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFSNHS2m7vzOOQO+ysD4LKOece3vew1sjyOg2bbZ57isAiBI3KMUtyDKO/m+hYcJx2XLox0cW1tAFDmX39qIzbQp6g=="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-3.0.0.tgz_1459028588002_0.21516546583734453"}},"3.1.0":{"name":"notie","description":"notie - a clean and simple notification suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.1.0","main":"notie.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"0072306bdfd5702c71855f9e94e3efba6c7e81f4","_id":"notie@3.1.0","scripts":{},"_shasum":"539caeafdc4b1098c72fcc3fdc41550d71edd402","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.2","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"539caeafdc4b1098c72fcc3fdc41550d71edd402","tarball":"https://registry.npmjs.org/notie/-/notie-3.1.0.tgz","integrity":"sha512-rnHx+hZws0A/mpcHYJFiEWTD58XyNhgq1oB8+87uR1r8GL3/XV5fKP7sneFDK7FMycXrVRM9bFtemrHkPMW1IA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDp9rafWxIjBkHWYzabyMmsJFfH84I95MdSKLTSgrCUnQIgLzdmJdNNUKZdNxYpjlNwrrgWyTW9ZFFblcNWyV/s6T4="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/notie-3.1.0.tgz_1461165286337_0.6625479648355395"}},"3.2.0":{"name":"notie","description":"notie - a clean and simple notification suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.2.0","main":"notie.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"27de9952f3e488dfa375f2ba33b102dc3b240ec2","_id":"notie@3.2.0","scripts":{},"_shasum":"3e0565c4ef5c10020de95aef2424892c76266c90","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.2","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"3e0565c4ef5c10020de95aef2424892c76266c90","tarball":"https://registry.npmjs.org/notie/-/notie-3.2.0.tgz","integrity":"sha512-yyNat1Y/T4+ZBCh0ND3of5orHBgOpd+vX9cLtKQQpe35LU1wb0B/WKc8pX8m4KOUzY5s3zdgl0KXo5SaMEkKOQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0QD6OmiiZuftonatYyLtDeDaadPzICUzNQoS5mIE7ogIhAIIRQGaNn14MOI92GTzup49BIMx2xBSXX97lsrtyyRrk"}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/notie-3.2.0.tgz_1461350824160_0.9407393974252045"}},"3.3.0":{"name":"notie","description":"notie - a clean and simple notification suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.3.0","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"ae9df944e234761fff6afb6ec8434748c4156ead","_id":"notie@3.3.0","scripts":{},"_shasum":"9512c94abd7134006b5377d4b3feb06f567a5966","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"9512c94abd7134006b5377d4b3feb06f567a5966","tarball":"https://registry.npmjs.org/notie/-/notie-3.3.0.tgz","integrity":"sha512-ALB5aGLIfpRIhAS++YWEPkG0uMOZa/v1Qk8e2JRzCQCvvb7vKIlDcTIwty42a/XokejoO68hwDcY9kkCc7w0Fw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBjNFvR3s9FfAM3h+mMxlkiyoA2iGiQ+gg/o5BgfKl3sAiAthjUW710am7DITXcg1igCHVvkSGgYuoYajkk30JE34Q=="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/notie-3.3.0.tgz_1468428018063_0.06603695289231837"}},"3.3.1":{"name":"notie","description":"notie - a clean and simple notification suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.3.1","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"25438df1a33f7f9324d3e0797639e9d0ad9c949b","_id":"notie@3.3.1","scripts":{},"_shasum":"7d09d768df9b3191c87c30316a352c9b3ca073c7","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"7d09d768df9b3191c87c30316a352c9b3ca073c7","tarball":"https://registry.npmjs.org/notie/-/notie-3.3.1.tgz","integrity":"sha512-ygmklPCU0YzF579CGpYQbONtakDsdqi/Q9u7HE1HYuvfDAzlJjFEz/whs+pSFcrN3lRgtjdjuNwYtyJjvOfqEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDABHZn7mhT9HkqfrFzTK4JTobu6OyMeuHD6M8jhPsnhAiBpMtV2rqO7R4EWNyuvV1MiCecp1ih00zAU/dYREcUrnw=="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-3.3.1.tgz_1468780647938_0.7189183849841356"}},"3.8.0":{"name":"notie","description":"notie - a clean and simple notification suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.8.0","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"6d57dc53b890ac436550e04f49dc0b354cd6fb1a","_id":"notie@3.8.0","scripts":{},"_shasum":"9c05518bf6b3be42fceac28097d5af8c5eb4dcee","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"9c05518bf6b3be42fceac28097d5af8c5eb4dcee","tarball":"https://registry.npmjs.org/notie/-/notie-3.8.0.tgz","integrity":"sha512-K2CNymqLxzF8QxVBvWI9k7/BRXnBKwy64PCHR/FhKEnjAIEIMOFdQBPNsdNp1Y755HT6Cr2cbvbfokU1vqw5Rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID0dKyubtRwWHSrLs/XEs1VlelkNARcUp6S9wUfhTdWpAiALcLUWsNS0CSuWkfoXpjfjEpiTw7yOgAZyzlrAlC4CHg=="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-3.8.0.tgz_1468868129766_0.22719425638206303"}},"3.8.1":{"name":"notie","description":"notie - a clean and simple notification suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.8.1","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"dc1b2917a448d7370e3bab4177fd90aa0fe93400","_id":"notie@3.8.1","scripts":{},"_shasum":"bf3ca300dd9647f58735a97156b1b80c8446b8fc","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"bf3ca300dd9647f58735a97156b1b80c8446b8fc","tarball":"https://registry.npmjs.org/notie/-/notie-3.8.1.tgz","integrity":"sha512-LwQWeEMOduPfrMHUht4WuSaYQF7aWzwidV8x5sy2HbwXLmrBiCm5am4YJUbfZu51Zm396v6sJEpv0wg402W4vg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFrqtlglyfGiOPjrILL4SVdz+MTbyp3KiRaDCWeKuIBiAiA50PASLEedBwrSowLooYKi4Jy8sF855qPHWJEbd35gDQ=="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/notie-3.8.1.tgz_1468868780743_0.6872323960997164"}},"3.8.2":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.8.2","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"a72ce75931ddf80056e5493d9c4d695742f32301","_id":"notie@3.8.2","scripts":{},"_shasum":"10d16b0f5db645f6bb3ada1425879ec79ec3ad30","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"10d16b0f5db645f6bb3ada1425879ec79ec3ad30","tarball":"https://registry.npmjs.org/notie/-/notie-3.8.2.tgz","integrity":"sha512-17UpUwccR708QJZrb97w6tqzKztcgtnT/xR9LpVRgeGAkGQYDCBSZ9K81spjAV2zpcbHV/+ACNhqgLuGAjnHKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDuwlhvf+HMDtscesAgGFfE39CsOR9D0w3EcM9QpJ8R8wIgGKEs0VDw/2QriRDw+w1PXKbZOGpmB6ihnR0uKE+F6sY="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/notie-3.8.2.tgz_1468891438321_0.6224912435282022"}},"3.8.3":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.8.3","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"6147da2cf690bcdb720af2879acbff9aabe8705d","_id":"notie@3.8.3","scripts":{},"_shasum":"63c49b10cf53694595c252cb325819ab6512c27f","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"63c49b10cf53694595c252cb325819ab6512c27f","tarball":"https://registry.npmjs.org/notie/-/notie-3.8.3.tgz","integrity":"sha512-aPv1Rs0NvWpaFDggHbNNe82Qdwbl4XGqeVMJhscd10PMZZVdlPeWIkS+hji+y/2UoPdaw9IHIzcuyU2+cuvAnQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGzczEIHjvis8ETgLOU5DL1MREnKejkrcEG63rsXdhGAAiEAw0cDL3UoZJTe5hBQRjZlB3F/QNnj+ZhROHmCHFDpzzo="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-3.8.3.tgz_1468940309439_0.692429122980684"}},"3.8.4":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.8.4","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"0684dc0987a85e95e6b37a92526887ec9d747987","_id":"notie@3.8.4","scripts":{},"_shasum":"ab82fa3ee095acf707d5812860f4e813e552d15f","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"ab82fa3ee095acf707d5812860f4e813e552d15f","tarball":"https://registry.npmjs.org/notie/-/notie-3.8.4.tgz","integrity":"sha512-pDb4TSjWpZF7X/L3/1Bpa/150774YHB4NcPlLQbH+eLeh7bu+/9IHOORT+t9dtkdoirIXXtBcQEUJTUylhthGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDpAwk3ca1usMlQRqRkoIbRPmoIUvAtfA+a8+mZbdqL2wIgLcUrLjArPCrLgRMVgByqWNtjnC2x/8lXMurVKSlC2P0="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-3.8.4.tgz_1468960631707_0.32446216349489987"}},"3.8.5":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.8.5","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"8dbaee2a8126d8f2530edf66715e8bf3c660578d","_id":"notie@3.8.5","scripts":{},"_shasum":"b917e95676249957aab357c808d057bd998160df","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"b917e95676249957aab357c808d057bd998160df","tarball":"https://registry.npmjs.org/notie/-/notie-3.8.5.tgz","integrity":"sha512-iRsXgPpNNvkVUDr+f2piKPY6zaonepBP0/eta2uRFtyHjmCyY0bGhz10q4Puf3W9nZkeh9CH0WIjL1fR5gNRew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC37AC27M/FSN5j501UGdVQ+DYQoiqQHqzgwSnAog9flAiEAv/WO6/FsKHmt68hBiF6hflrc91eqpQECZ0PRjINuTZo="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-3.8.5.tgz_1469291015840_0.20214825426228344"}},"3.9.0":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.9.0","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"b3e9f41a0b26b24aab732267f5ba7b5acdd78e3d","_id":"notie@3.9.0","scripts":{},"_shasum":"3df640144e7ca3f222a37b5797fb3107745ba999","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"3df640144e7ca3f222a37b5797fb3107745ba999","tarball":"https://registry.npmjs.org/notie/-/notie-3.9.0.tgz","integrity":"sha512-h0t4SQWp2GQsblWOgKE9XlX+2oEc1rnLtJrRowYAY6rslOdvaHtKiV79D1N5Wl9Q7hFe14w+fnUX0n65DjGExg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDSWOhEhFvO3MV8f8l41RvPnCezgou+dgxnw+vH6fCmuwIhALCiy9WsjZWAJ6PtVN+Jh1DJOVW7TU2VZp9K5s3EaPsT"}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-3.9.0.tgz_1469513904806_0.30162921361625195"}},"3.9.1":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.9.1","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"20012caaa006179c93d58067e6456ea2d8c3311c","_id":"notie@3.9.1","scripts":{},"_shasum":"1ca7fce92e5d55f8c87c6df7ea96db669fc36e7c","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"1ca7fce92e5d55f8c87c6df7ea96db669fc36e7c","tarball":"https://registry.npmjs.org/notie/-/notie-3.9.1.tgz","integrity":"sha512-npRvos2xV9ojKsWG0AwxdPAFI3unq5dHfjGMSNI7/sDlGCScZnvuZhhk5xqqgNGDbmR/diuTO6iNyvAqGSH1HQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHoQvdOhymbnSgLZYmuWi5AX8RW8rSmfMNarDNRSUP84AiEAreQc/VXtzXNf1GG1fFQ8pAngUg2a9b8WNQAwi1fQ110="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/notie-3.9.1.tgz_1469976886486_0.4678719330113381"}},"3.9.2":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.9.2","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"b13bc5f1b0c259b7b0ee34a729e124c405177c60","_id":"notie@3.9.2","scripts":{},"_shasum":"ee4e57fcd5480bf76447f8b1d5794cc67553601f","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"ee4e57fcd5480bf76447f8b1d5794cc67553601f","tarball":"https://registry.npmjs.org/notie/-/notie-3.9.2.tgz","integrity":"sha512-KudZef7yAzqm04JGCmOsWn33chil51w6/1p/4t7d53Mwpeal36ZpNl/DS+FvCiVuIyDkebgFeMV5IGp8HIapCQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZ0+CmEPUliGOFL66rQTeuVSIXTahIJwJs7WtuheDssgIhAPOmM/WCzxhVHm0wryYVX61/FZjUBTXeLAXI6ZfmKANJ"}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/notie-3.9.2.tgz_1471110406752_0.09050035406835377"}},"3.9.3":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.9.3","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"0f4570a4ae5b77179ce596dbace5c975eb19d527","_id":"notie@3.9.3","scripts":{},"_shasum":"e01c85e6f142c722139b41ad92e94142a3d6f1a1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"e01c85e6f142c722139b41ad92e94142a3d6f1a1","tarball":"https://registry.npmjs.org/notie/-/notie-3.9.3.tgz","integrity":"sha512-Hys7nqPVikj6PjNCqXp9DbAs2UZSH+CMV9fmJbRMLNIIe514dSKZkwT/v3CnBMPfyFry/cMAvkN06eAJZ7oH2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFyiAM6og2HBI7gVN7qNsubCq9vyuouNODvXJmb9UnIsAiEAztqUFqzOC/WezkB2cR+QjRsRMjjFaCTG+cYPFhwmaOA="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-3.9.3.tgz_1473300261833_0.2642155825160444"}},"3.9.4":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.9.4","main":"./dist/notie.min.js","repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"^2.2.0","eslint":"^3.0.1","eslint-config-standard":"^5.3.5","eslint-plugin-promise":"^2.0.0","eslint-plugin-standard":"^2.0.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-rename":"^1.2.2","gulp-sass":"^2.2.0","gulp-uglify":"^1.5.3"},"gitHead":"1250e89ee7b6cbda49e30b8845aa69828f4de745","_id":"notie@3.9.4","scripts":{},"_shasum":"7e165039625fec32a5ee732a2c2207d5e8ea1cbb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"7e165039625fec32a5ee732a2c2207d5e8ea1cbb","tarball":"https://registry.npmjs.org/notie/-/notie-3.9.4.tgz","integrity":"sha512-z3uIJ0jDcOMWTvx4/IWQH86Nt99HXDxpZMuiIN6wtDLwxBXn3zU5GA/Xs0+VOebw6cJo934ImkcN/SY9/dLNFg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDFHNeC2qH3eTyURAPBSADGGzupaSROGUmAB9NqI+HnPwIhAPfCelsxyzlnrkyTuEqqXTLZu1FoxUgv4c/kr+0et203"}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/notie-3.9.4.tgz_1473300974485_0.8622625463176519"}},"3.9.5":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"3.9.5","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"build":"gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","alert","notification","growl","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"del":"2.2.0","eslint":"3.0.1","eslint-config-standard":"5.3.5","eslint-plugin-promise":"2.0.0","eslint-plugin-standard":"2.0.0","gulp":"3.9.1","gulp-cssnano":"2.1.1","gulp-rename":"1.2.2","gulp-sass":"2.2.0","gulp-uglify":"1.5.3"},"gitHead":"e88e2b4daea66e3e698e44cae167002d9ad47ec7","_id":"notie@3.9.5","_shasum":"dd203c3a7210207fc9838c777c40953532577aa5","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"dd203c3a7210207fc9838c777c40953532577aa5","tarball":"https://registry.npmjs.org/notie/-/notie-3.9.5.tgz","integrity":"sha512-BOAgQcZQTacoN/7w/qwRBhKOspkjXIw7qHDeVP0VbRPpyj98lQFeMHsrbc45HcyfvEyR8VkopibApR4/1nqjQA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCeDKi4UpF+WOc4+JB98uCGnKVrMirzGMN5wyiaH+3H4AIhAJuYyvXBCxjiq67YRvbqTUPkETQpM3LGOteHQMwUHwHH"}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/notie-3.9.5.tgz_1481899804944_0.9209577417932451"}},"4.0.0-rc.1":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.0.0-rc.1","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"babel-plugin-transform-es2015-modules-umd":"6.22.0","babel-preset-es2015":"6.22.0","babel-preset-stage-3":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-babel":"6.1.2","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-uglify":"2.0.1","run-sequence":"1.2.2"},"gitHead":"2d08af94652f8dd2c16cf60e141f899a84d87b79","_id":"notie@4.0.0-rc.1","_shasum":"d6b8f947734b7d3ae993ba2b1f5cb3e65e86c31d","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"d6b8f947734b7d3ae993ba2b1f5cb3e65e86c31d","tarball":"https://registry.npmjs.org/notie/-/notie-4.0.0-rc.1.tgz","integrity":"sha512-7pWZueqdnNjeG6T/FgPHLr0pj0GgHp47Uw2FR6QwkowdiZ6WedInAZ4L009iGQCB14/sKCnhnZuLFGtoRhNvDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqBfW9c2VBCLwFivy6S9aaAqvwGRKqobTXMfGOadjf5gIgRl6LEarxOozEApVe+xIX2rAMWExw2Gl8YQ8PBBnMkw4="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/notie-4.0.0-rc.1.tgz_1488130284621_0.9196819614153355"}},"4.0.0-rc.2":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.0.0-rc.2","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp clean && gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"babel-core":"6.23.1","babel-loader":"6.3.2","babel-preset-es2015":"6.22.0","babel-preset-stage-0":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-webpack":"1.5.0","run-sequence":"1.2.2","webpack":"2.2.1"},"gitHead":"6947f1155c293e7223faa30d4a01d72190e5ff85","_id":"notie@4.0.0-rc.2","_shasum":"e86fbdc8ad20d94b7baf5b647f214f586048ace9","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"e86fbdc8ad20d94b7baf5b647f214f586048ace9","tarball":"https://registry.npmjs.org/notie/-/notie-4.0.0-rc.2.tgz","integrity":"sha512-AgrK9SeMoQUtK5swMBotfyRHPBgC152u9d0vsBcpqqEwxhzJsBf+2qQWAXEZVxb6n4+gSLWaktotSmwblkO+Lw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD9OhjTjw6Gti4ldMzud9b4ZxyItDQmv6CE7Xgt8mYrfwIgb9c3e7HPSBDtWboByrtu85SrQwYd7id4j9qvfKmDq+I="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-4.0.0-rc.2.tgz_1488141248469_0.6708241843152791"}},"4.0.0-rc.3":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.0.0-rc.3","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp clean && gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"babel-core":"6.23.1","babel-loader":"6.3.2","babel-preset-es2015":"6.22.0","babel-preset-stage-0":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-webpack":"1.5.0","run-sequence":"1.2.2","webpack":"2.2.1"},"gitHead":"ff0bfe5a03a13a977e23b8f14a5128ac9d278733","_id":"notie@4.0.0-rc.3","_shasum":"c68abea79ac5fd43bdab18fac985a1fe927b9348","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"c68abea79ac5fd43bdab18fac985a1fe927b9348","tarball":"https://registry.npmjs.org/notie/-/notie-4.0.0-rc.3.tgz","integrity":"sha512-6vgokYSwF1OC/+DngifKhaZovb4gMuf50UHypJZXqOiPC0EfToQp+EoEY1TqAKEffXb4EML3bV0Uti34dGfPig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBY5+HvHMroZOFqvnTr0Wrx0NEczNDoljrLfk0fPykQgAiEAoi44alXdeN66HlIj2Wu7WrpVCLK7bcigwvVUSnrMINU="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/notie-4.0.0-rc.3.tgz_1488142408626_0.626488538691774"}},"4.0.0":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.0.0","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp clean && gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"babel-core":"6.23.1","babel-loader":"6.3.2","babel-preset-es2015":"6.22.0","babel-preset-stage-0":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-webpack":"1.5.0","run-sequence":"1.2.2","webpack":"2.2.1"},"gitHead":"9f2d1405807c60c33a2814dc506e7f61e8a8ab27","_id":"notie@4.0.0","_shasum":"071b09985cf77daa20ea6c7dbb37fd183f93e4d8","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"071b09985cf77daa20ea6c7dbb37fd183f93e4d8","tarball":"https://registry.npmjs.org/notie/-/notie-4.0.0.tgz","integrity":"sha512-aZ0I0c857u/3g9iv3UteLSqA9Z+5AGHguM+yOE4AtPakVE3qQiavaYrDYQPq5WgZ1wemkX9YhEhq/wMxEHuDKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE0xEQ1ILI+8b7KWUHbU88hfgMI0ejGozgaxsjRnmMvPAiEAslZgw1t7WmrqHa+TdKElPIxdG+xR8FsHpJueWDuf9FY="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/notie-4.0.0.tgz_1488143262865_0.6703122945036739"}},"4.1.0":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.1.0","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp clean && gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"babel-core":"6.23.1","babel-loader":"6.3.2","babel-preset-es2015":"6.22.0","babel-preset-stage-0":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-webpack":"1.5.0","run-sequence":"1.2.2","webpack":"2.2.1"},"gitHead":"75372a91770fc7859cabdb7afa508b3bdf637ce2","_id":"notie@4.1.0","_shasum":"44461b9fa77455c4925fbb6b0bffc5b420843d91","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"44461b9fa77455c4925fbb6b0bffc5b420843d91","tarball":"https://registry.npmjs.org/notie/-/notie-4.1.0.tgz","integrity":"sha512-rUTSKkRPUn5LfefvlL0DUIvWbYAMoAW355XPacvM50pNCWDG3YjeIwaf9PqNWKCriK3Hc872hSSGZL7K+J6u6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAHb5uPm5PBleZLJbZU6uVWISR44iPmAWykXN3Sp+SZoAiBFoUajr2hGRANz0N7hdqvaoOXddf6z/U2rnLjWZrUPTQ=="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/notie-4.1.0.tgz_1488212516665_0.5628552790731192"}},"4.2.0":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.2.0","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp clean && gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"babel-core":"6.23.1","babel-loader":"6.3.2","babel-preset-es2015":"6.22.0","babel-preset-stage-0":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-webpack":"1.5.0","run-sequence":"1.2.2","webpack":"2.2.1"},"gitHead":"ccba26da069d5abdd3957ec867abf7918280c4c1","_id":"notie@4.2.0","_shasum":"b7cf7575caa71942fc41965f751ac43d2c10ca40","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"b7cf7575caa71942fc41965f751ac43d2c10ca40","tarball":"https://registry.npmjs.org/notie/-/notie-4.2.0.tgz","integrity":"sha512-Sxr8JsLIeXjPsux8KjV6XJLWaHFG91r3b6gEXZHXeICyoSqcFDohbJHS900V7KMm7JWztiWq+oB/tBWKyXPY6w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB/OP6I41LYlik/5CU2SB2zmMSEmJN41chdu+mXNOkx3AiAdrBjy0vEI1DwML4HpFF1P7DcBvcEccUwf3/I0hocf7g=="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/notie-4.2.0.tgz_1488377857070_0.9272022363729775"}},"4.2.1":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.2.1","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp clean && gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"babel-core":"6.23.1","babel-loader":"6.3.2","babel-preset-es2015":"6.22.0","babel-preset-stage-0":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-webpack":"1.5.0","run-sequence":"1.2.2","webpack":"2.2.1"},"gitHead":"fa5f5088bf3fb0f2578b29136d09f0fb79cdd951","_id":"notie@4.2.1","_shasum":"f5754e99d3d1697327fe5550dc58fdcd998da334","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"f5754e99d3d1697327fe5550dc58fdcd998da334","tarball":"https://registry.npmjs.org/notie/-/notie-4.2.1.tgz","integrity":"sha512-is890OctUmxVPXEC935XSAoslMX2tmv/S3UmkDvada1CwSk+ddpNriEo7Tuqn0B9zD3BG+c/ll7wZhFrMlsJ/g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDzfVook2qcM1JDdewzpqadksLtYI7GPjLROZ1Ss3e04AIgehoV6lmWDy/HbizJchDDgzdRyq6UOuKRM6wCi7F9CBA="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/notie-4.2.1.tgz_1488384584416_0.5729290747549385"}},"4.3.0":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.3.0","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp clean && gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/projects/notie","devDependencies":{"babel-core":"6.23.1","babel-loader":"6.3.2","babel-preset-es2015":"6.22.0","babel-preset-stage-0":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-webpack":"1.5.0","run-sequence":"1.2.2","webpack":"2.2.1"},"gitHead":"9d3d2025fe926cead52077fd115f57cbb0b5ea9b","_id":"notie@4.3.0","_shasum":"e805c64c7045ff29532714fad7a658f36464b37c","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"e805c64c7045ff29532714fad7a658f36464b37c","tarball":"https://registry.npmjs.org/notie/-/notie-4.3.0.tgz","integrity":"sha512-9l+TNDAup6jBzfrxD7aIgt8ZXw/3cWNwq967gEsnvym/DrqgFfb6aV2Dn0/DEZ2V9U2j3XrmMIXL1mIyILxskQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDxP9+f/8uLl5jTMthSCi+yiepd0GQwRAaAedBNP74iIwIgSekz9pbYPh7AfU4oMcj3xluVgJpO3cun+adLZyXMd/8="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-4.3.0.tgz_1488694549571_0.9953716231975704"}},"4.3.1":{"name":"notie","description":"notie - a clean and simple notification, input, and selection suite for javascript, with no dependencies","author":{"name":"Jared Reich"},"version":"4.3.1","main":"./dist/notie.min.js","files":["dist/","src/"],"scripts":{"dev":"gulp","build":"gulp clean && gulp script && gulp style"},"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"license":"MIT","bugs":{"url":"https://github.com/jaredreich/notie/issues"},"homepage":"https://jaredreich.com/notie","devDependencies":{"babel-core":"6.23.1","babel-loader":"6.3.2","babel-preset-es2015":"6.22.0","babel-preset-stage-0":"6.22.0","del":"2.2.2","eslint-config-jared":"latest","gulp":"3.9.1","gulp-cssnano":"2.1.2","gulp-rename":"1.2.2","gulp-sass":"3.1.0","gulp-webpack":"1.5.0","run-sequence":"1.2.2","webpack":"2.2.1"},"gitHead":"418a4b32b1b0a3647b829d62bdd667a96bb4b4d7","_id":"notie@4.3.1","_shasum":"0d199de15130242e21675507aba63c6929e0adda","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jaredreich","email":"jaredreich@gmail.com"},"dist":{"shasum":"0d199de15130242e21675507aba63c6929e0adda","tarball":"https://registry.npmjs.org/notie/-/notie-4.3.1.tgz","integrity":"sha512-KdPHy0LJhQQiY2ouFtMjoEj/NZuw3KfRQPQfU28kbwrdhVAA0BHsuW9Rm1OZgcO5u/Us6uuAKAvsYtQdjVMSsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC1sfVf2LoHX1blSBn1V3/4i/umBv2NIWDud+2pXRiq8AiEAvebkCNflMbNPDcpK7XYo0JINTQzKeIDVWDtN7BOLZ/o="}]},"maintainers":[{"name":"jaredreich","email":"jaredreich@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/notie-4.3.1.tgz_1493186475166_0.7060915918555111"}}},"homepage":"https://jaredreich.com/notie","keywords":["javascript","notification","alert","prompt","confirm","growl","toast","message"],"repository":{"type":"git","url":"git+https://github.com/jaredreich/notie.git"},"author":{"name":"Jared Reich"},"bugs":{"url":"https://github.com/jaredreich/notie/issues"},"license":"MIT","readmeFilename":"README.md","users":{"nickeltobias":true,"tobiasnickel":true,"davidazullo":true,"jaredreich":true,"jaredwilli":true}}