From 1c949067da53364067fc39d2ada3d0829cfb7be3 Mon Sep 17 00:00:00 2001 From: David Blackman Date: Thu, 20 May 2021 10:26:13 -0400 Subject: [PATCH] lower node engine to >=12 This adds a warning in npm install for ava@typescript that can be safely ignored --- package.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 64b77960..86913b5f 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,16 @@ { "name": "@notionhq/client", - "version": "0.1.3", + "version": "0.1.4", "description": "A simple and easy to use client for the Notion API", "engines": { - "node": ">=14.15.0" + "node": ">=12" }, - "keywords": ["notion", "notionapi", "rest", "notion-api"], + "keywords": [ + "notion", + "notionapi", + "rest", + "notion-api" + ], "main": "./build/src", "scripts": { "prepare": "npm run build", @@ -15,7 +20,9 @@ }, "author": "", "license": "MIT", - "files": ["build/src/**"], + "files": [ + "build/src/**" + ], "dependencies": { "got": "^11.8.2" },