Skip to content

Commit

Permalink
fix(dependencies): update dependencies and tooling (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaebradley authored Feb 5, 2020
1 parent c326d31 commit d95cd27
Show file tree
Hide file tree
Showing 8 changed files with 12,615 additions and 7,992 deletions.
8 changes: 8 additions & 0 deletions .huskyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run commitmsg",
"pre-push": "npm run test"
}
}

1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12.14.1
8 changes: 1 addition & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,7 @@ language: node_js
cache:
directories:
- ~/.npm
notifications:
email: true
node_js:
- 'node'
- 'lts/*'
install: npm install
before_install:
- npm install -g npm@5
- npm install -g greenkeeper-lockfile@1
jobs:
include:
Expand All @@ -18,6 +11,7 @@ jobs:
- npm run build
- npm run lint
- npm run test
- npm run is-build-es5
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
after_success:
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# `email-prop-type`

[![Greenkeeper badge](https://badges.greenkeeper.io/jaebradley/email-prop-type.svg)](https://greenkeeper.io/)
[![Build Status](https://travis-ci.org/jaebradley/email-prop-type.svg?branch=master)](https://travis-ci.org/jaebradley/email-prop-type)
[![codecov](https://codecov.io/gh/jaebradley/email-prop-type/branch/master/graph/badge.svg)](https://codecov.io/gh/jaebradley/email-prop-type)
[![npm](https://img.shields.io/npm/dt/email-prop-type.svg)](https://www.npmjs.com/package/email-prop-type)
[![npm](https://img.shields.io/npm/v/email-prop-type.svg)](https://www.npmjs.com/package/email-prop-type)
![npm bundle size](https://img.shields.io/bundlephobia/minzip/email-prop-type)
[![npm-total-downloads](https://img.shields.io/npm/dt/email-prop-type.svg)](https://www.npmjs.com/package/email-prop-type)
![GitHub](https://img.shields.io/github/license/jaebradley/email-prop-type)

# `email-prop-type`

## Introduction

Expand Down
7 changes: 7 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
testEnvironment: 'node',
testPathIgnorePatterns: [
'<rootDir>/build/',
'<rootDir>/node_modules/',
],
};
Loading

0 comments on commit d95cd27

Please sign in to comment.