From d244784ad00c30bd6b8265a86aead46888c7833e Mon Sep 17 00:00:00 2001 From: Harry Marr Date: Thu, 21 Feb 2019 12:47:10 -0500 Subject: [PATCH] Initial commit --- .gitignore | 1 + README.md | 4 ++++ javascript/package.json | 9 +++++++++ javascript/yarn.lock | 8 ++++++++ ruby/Gemfile | 4 ++++ ruby/Gemfile.lock | 15 +++++++++++++++ 6 files changed, 41 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 javascript/package.json create mode 100644 javascript/yarn.lock create mode 100644 ruby/Gemfile create mode 100644 ruby/Gemfile.lock diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..c2658d7d1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/README.md b/README.md new file mode 100644 index 000000000..f98593c37 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Dependabot Demo Repository + +This repo contains some projects with outdated dependencies. Fork it to try out +Dependabot! diff --git a/javascript/package.json b/javascript/package.json new file mode 100644 index 000000000..696bf46ad --- /dev/null +++ b/javascript/package.json @@ -0,0 +1,9 @@ +{ + "name": "javascript", + "version": "1.0.0", + "main": "index.js", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.10" + } +} diff --git a/javascript/yarn.lock b/javascript/yarn.lock new file mode 100644 index 000000000..77133ec4e --- /dev/null +++ b/javascript/yarn.lock @@ -0,0 +1,8 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +lodash@^4.17.10: + version "4.17.10" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" + integrity sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg== diff --git a/ruby/Gemfile b/ruby/Gemfile new file mode 100644 index 000000000..d6f001898 --- /dev/null +++ b/ruby/Gemfile @@ -0,0 +1,4 @@ +source "https://rubygems.org" + +gem "business", "~> 1.0.0" +gem "uk_phone_numbers", "~> 0.1.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock new file mode 100644 index 000000000..b82919ce3 --- /dev/null +++ b/ruby/Gemfile.lock @@ -0,0 +1,15 @@ +GEM + remote: https://rubygems.org/ + specs: + business (1.0.0) + uk_phone_numbers (0.1.0) + +PLATFORMS + ruby + +DEPENDENCIES + business (~> 1.0.0) + uk_phone_numbers (~> 0.1.0) + +BUNDLED WITH + 1.17.3