From 5aa82630c0854120a4fdb3aaa6068302de7762a8 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Mon, 31 Aug 2015 16:06:30 -0700 Subject: [PATCH] package: move myself to "contributors" array There is no "authors", according to npm. Only "author" (singular): https://docs.npmjs.com/files/package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 83f0b583..7c113f85 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,8 @@ "name": "ffi", "version": "1.3.2", "license": "MIT", - "authors": [ - "Rick Branson", + "author": "Rick Branson", + "contributors": [ "Nathan Rajlich (http://tootallnate.net)" ], "description": "A foreign function interface (FFI) for Node.js",