Skip to content

Commit d244784

Browse files
committedFeb 21, 2019
Initial commit
0 parents  commit d244784

File tree

6 files changed

+41
-0
lines changed

6 files changed

+41
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Dependabot Demo Repository
2+
3+
This repo contains some projects with outdated dependencies. Fork it to try out
4+
Dependabot!

‎javascript/package.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "javascript",
3+
"version": "1.0.0",
4+
"main": "index.js",
5+
"license": "MIT",
6+
"dependencies": {
7+
"lodash": "^4.17.10"
8+
}
9+
}

‎javascript/yarn.lock

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
lodash@^4.17.10:
6+
version "4.17.10"
7+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
8+
integrity sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==

‎ruby/Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
3+
gem "business", "~> 1.0.0"
4+
gem "uk_phone_numbers", "~> 0.1.0"

‎ruby/Gemfile.lock

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
business (1.0.0)
5+
uk_phone_numbers (0.1.0)
6+
7+
PLATFORMS
8+
ruby
9+
10+
DEPENDENCIES
11+
business (~> 1.0.0)
12+
uk_phone_numbers (~> 0.1.0)
13+
14+
BUNDLED WITH
15+
1.17.3

0 commit comments

Comments
 (0)
Please sign in to comment.