diff --git a/.editorconfig b/.editorconfig
deleted file mode 100644
index 4a7ea30..0000000
--- a/.editorconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-root = true
-
-[*]
-indent_style = space
-indent_size = 2
-end_of_line = lf
-charset = utf-8
-trim_trailing_whitespace = true
-insert_final_newline = true
-
-[*.md]
-trim_trailing_whitespace = false
diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 176a458..0000000
--- a/.gitattributes
+++ /dev/null
@@ -1 +0,0 @@
-* text=auto
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 3c3629e..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-node_modules
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index f4bb53b..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-language: node_js
-node_js:
-- iojs
diff --git a/browser.js b/browser.js
index 4ee0d11..ad93a5a 100644
--- a/browser.js
+++ b/browser.js
@@ -2,6 +2,7 @@ module.exports = {
   "100": "Continue",
   "101": "Switching Protocols",
   "102": "Processing",
+  "103": "Early Hints",
   "200": "OK",
   "201": "Created",
   "202": "Accepted",
@@ -38,12 +39,12 @@ module.exports = {
   "415": "Unsupported Media Type",
   "416": "Range Not Satisfiable",
   "417": "Expectation Failed",
-  "418": "I'm a teapot",
+  "418": "I'm a Teapot",
   "421": "Misdirected Request",
   "422": "Unprocessable Entity",
   "423": "Locked",
   "424": "Failed Dependency",
-  "425": "Unordered Collection",
+  "425": "Too Early",
   "426": "Upgrade Required",
   "428": "Precondition Required",
   "429": "Too Many Requests",
diff --git a/build.js b/build.js
index 8fc305c..e44fa9e 100644
--- a/build.js
+++ b/build.js
@@ -1,8 +1,8 @@
 'use strict'
 
-var fs = require('fs')
-var statusCodes = require('./')
+const fs = require('fs')
+const statusCodes = require('./')
 
-var code = 'module.exports = ' + JSON.stringify(statusCodes, null, 2) + '\n'
+const code = 'module.exports = ' + JSON.stringify(statusCodes, null, 2) + '\n'
 
 fs.writeFileSync('browser.js', code)
diff --git a/debian/changelog b/debian/changelog
index 5352c1c..02f562d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+node-builtin-status-codes (3.0.0+git20201029.1.6320d5f-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Fri, 01 Apr 2022 04:52:02 -0000
+
 node-builtin-status-codes (3.0.0-3) unstable; urgency=medium
 
   * Team upload
diff --git a/license b/license
index 25c6247..cb65cca 100644
--- a/license
+++ b/license
@@ -1,6 +1,6 @@
 The MIT License (MIT)
 
-Copyright (c) Ben Drucker <bvdrucker@gmail.com> (bendrucker.me)
+Copyright (c) 2018 Ben Drucker <bvdrucker@gmail.com> (bendrucker.me)
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/package.json b/package.json
index d20dcd8..0ea9c89 100644
--- a/package.json
+++ b/package.json
@@ -23,8 +23,8 @@
     "map"
   ],
   "devDependencies": {
-    "tape": "^4.0.0",
-    "standard": "^4.0.0"
+    "tape": "^5.0.0",
+    "standard": "^16.0.0"
   },
   "files": [
     "index.js",
diff --git a/readme.md b/readme.md
index 9a2353d..7dd8c3d 100644
--- a/readme.md
+++ b/readme.md
@@ -1,19 +1,17 @@
-# builtin-status-codes [![Build Status](https://travis-ci.org/bendrucker/builtin-status-codes.svg?branch=master)](https://travis-ci.org/bendrucker/builtin-status-codes)
+# builtin-status-codes [![tests](https://github.com/bendrucker/builtin-status-codes/workflows/tests/badge.svg)](https://github.com/bendrucker/builtin-status-codes/actions?query=workflow%3Atests)
 
 > The map of HTTP status codes from the builtin http module. Exposes the latest directly from `http` in Node, with a zero-dependencies version for the browser.
 
-
 ## Install
 
 ```
-$ npm install --save builtin-status-codes
+npm install --save builtin-status-codes
 ```
 
-
 ## Usage
 
 ```js
-var codes = require('builtin-status-codes')
+const codes = require('builtin-status-codes')
 codes[100]
 //=> Continue
 ```
@@ -23,7 +21,7 @@ codes[100]
 To create a new browser build:
 
 ```sh
-$ npm run build
+npm run build
 ```
 
 ## License
diff --git a/test.js b/test.js
deleted file mode 100644
index 329d16d..0000000
--- a/test.js
+++ /dev/null
@@ -1,11 +0,0 @@
-'use strict'
-
-var test = require('tape')
-var node = require('./')
-var browser = require('./browser')
-
-test(function (t) {
-  t.equal(node[100], 'Continue')
-  t.equal(node[100], browser[100])
-  t.end()
-})