Compare commits

...

4 Commits

@ -10,6 +10,12 @@ Because this package doesn't rely on any generators or boilerplates, you can eas
This library uses Browserify, which is a bundler just like Webpack - however, Browserify is much simpler to understand and configure. It can do the same things as Webpack can, and you won't need Webpack when using Browserify. It's actually been around for longer than Webpack!
## License, donations, and other boilerplate
Licensed under either the [WTFPL](http://www.wtfpl.net/txt/copying/) or [CC0](https://creativecommons.org/publicdomain/zero/1.0/), at your choice. In practice, that means it's more or less public domain, and you can do whatever you want with it. Giving credit is *not* required, but still very much appreciated! I'd love to [hear from you](mailto:admin@cryto.net) if this module was useful to you.
Creating and maintaining open-source modules is a lot of work. A donation is also not required, but much appreciated! You can donate [here](http://cryto.net/~joepie91/donate.html).
## Usage
Because `budo-express` is meant to integrate into your own Express app, it's exposed as a library rather than a command-line utility.
@ -209,6 +215,10 @@ Arguments:
## Changelog
### v1.0.1 (February 16, 2020)
- __Documentation:__ Added license/donation boilerplate to README
### v1.0.0 (February 16, 2020)
Initial release.

@ -1,10 +1,12 @@
{
"name": "budo-express",
"description": "A small wrapper to integrate Budo with an Express application",
"version": "1.0.0",
"version": "1.0.1",
"main": "index.js",
"repository": "git@git.cryto.net:joepie91/budo-express.git",
"bugs": { "url": "https://git.cryto.net/joepie91/budo-express/issues" },
"bugs": {
"url": "https://git.cryto.net/joepie91/budo-express/issues"
},
"author": "Sven Slootweg <admin@cryto.net>",
"license": "WTFPL OR CC0-1.0",
"dependencies": {

@ -1775,6 +1775,11 @@ is-number@^3.0.0:
dependencies:
kind-of "^3.0.2"
is-plain-obj@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
is-plain-object@^2.0.3, is-plain-object@^2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
@ -3378,13 +3383,14 @@ v8-compile-cache@^2.0.3:
integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
validatem@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/validatem/-/validatem-0.2.0.tgz#0cde815813f3c8a33615bf09370e88d511a65658"
integrity sha512-fSW8L19US3smdm/E5tw7zTR3WgC+yGiBf67zhxCgVJExujZui2t8gwVyX05u9tcIBu/90tzqsD9hfMR0VAGKUA==
version "0.2.1"
resolved "https://registry.yarnpkg.com/validatem/-/validatem-0.2.1.tgz#fd85d7b035a6c3cf553e8d9292ff584743e25e98"
integrity sha512-1K/jV6NJe7+9+ukxjhoDVtaAXzqswjUKVw8iGiWJn8QNFYltteprrg+f9Q3cueo6kBNlybeYYiDs/PS14bffrA==
dependencies:
assure-array "^1.0.0"
create-error "^0.3.1"
default-value "^1.0.0"
is-plain-obj "^2.0.0"
vm-browserify@^1.0.0:
version "1.1.2"

Loading…
Cancel
Save