From 610aea8ffc7f5a269a4f7e9bb20d029a2296fc8d Mon Sep 17 00:00:00 2001 From: Phil Rukin Date: Wed, 23 Jun 2021 20:32:45 +0200 Subject: [PATCH] Add fake test script --- package.json | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 468255c..99587ce 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,16 @@ -{ - "name": "@heritage-type/svg-to-pdfkit", - "version": "0.1.8", - "description": "Insert SVG into a PDF document created with PDFKit", - "author": "HeritageType", - "license": "MIT", - "repository": "https://github.com/HeritageType/SVG-to-PDFKit", - "bugs": "https://github.com/HeritageType/SVG-to-PDFKit/issues", - "main": "source.js", - "dependencies": { - "pdfkit": ">=0.8.1" - } -} +{ + "name": "@heritage-type/svg-to-pdfkit", + "version": "0.1.8", + "description": "Insert SVG into a PDF document created with PDFKit", + "author": "HeritageType", + "license": "MIT", + "repository": "https://github.com/HeritageType/SVG-to-PDFKit", + "bugs": "https://github.com/HeritageType/SVG-to-PDFKit/issues", + "main": "source.js", + "scripts": { + "test": "echo 'no tests';exit 0" + }, + "dependencies": { + "pdfkit": ">=0.8.1" + } +}