diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..368e4c4
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,16 @@
+sudo: false
+language: node_js
+node_js:
+  - "4"
+  - "5"
+  - "6"
+  - "7"
+  - "8"
+  - "10"
+matrix:
+  include:
+    - node_js: "10"
+      env: TEST_SUITE=standard
+env:
+  - TEST_SUITE=unit
+script: npm run-script $TEST_SUITE
diff --git a/debian/changelog b/debian/changelog
index 8ebc381..5b395cb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+node-browserify-cipher (1.0.1+git20181107.1.a0937d8-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Sun, 27 Mar 2022 07:56:19 -0000
+
 node-browserify-cipher (1.0.1-2) unstable; urgency=medium
 
   * Team upload
diff --git a/package.json b/package.json
index 7bdf2a6..9168754 100644
--- a/package.json
+++ b/package.json
@@ -15,7 +15,9 @@
     "tape": "^4.2.0"
   },
   "scripts": {
-    "test": "standard && node test.js | tspec"
+    "standard": "standard",
+    "unit": "node test.js | tspec",
+    "test": "npm run standard && npm run unit"
   },
   "author": "Calvin Metcalf <calvin.metcalf@gmail.com>",
   "license": "MIT",