From 669c1c9baa7f3012b0ee0fea7a6b80c7ffb40b13 Mon Sep 17 00:00:00 2001 From: Keith Cirkel Date: Wed, 14 Aug 2024 15:46:52 +0100 Subject: [PATCH] add package.json --- .gitignore | 1 + package.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .gitignore create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/package.json b/package.json new file mode 100644 index 0000000..75e2cf9 --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "@github/arianotify-polyfill", + "version": "1.0.0", + "description": "Polyfill for the ARIA Notification API", + "keywords": [], + "license": "MIT", + "author": "GitHub Inc.", + "main": "ariaNotify-polyfill.js", + "directories": { + "example": "examples" + }, + "files": [], + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + } +}