From aead01ff3d792432e1cb2ed15b890ffbf5766e33 Mon Sep 17 00:00:00 2001 From: Clovis Gauzy Date: Sun, 29 Nov 2020 14:37:00 +0100 Subject: [PATCH] Use StandardJS --- .gitignore | 1 + package.json | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 36aec13..efdaae9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /node_modules *.lock *.md.backup +package-lock.json diff --git a/package.json b/package.json index 859413c..baaece1 100644 --- a/package.json +++ b/package.json @@ -5,5 +5,11 @@ "repository": "https://github.com/clovfr/node-rawtherapee", "author": "Clovis Gauzy", "license": "BSD-3", - "main": "rawtherapee.js" + "main": "rawtherapee.js", + "devDependencies": { + "standard": "^16.0.3" + }, + "scripts": { + "test": "standard" + } }