From 91d0c4e5448a79dc4c47f8771c258c854d690360 Mon Sep 17 00:00:00 2001 From: Morgan Wigmanich Date: Tue, 28 Jun 2016 07:50:09 -0400 Subject: [PATCH] add package.json for publishing to npm registry --- .npmignore | 1 + package.json | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 .npmignore create mode 100644 package.json diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..4787202 --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +demo/ diff --git a/package.json b/package.json new file mode 100644 index 0000000..d05ab4c --- /dev/null +++ b/package.json @@ -0,0 +1,36 @@ +{ + "name": "rangyinputs", + "version": "1.2.0", + "description": "A small jQuery plug-in for selection and caret manipulation within textareas and text inputs.", + "main": "rangyinputs-jquery.js", + "author": { + "name": "Tim Down", + "email": "tim@timdown.co.uk", + "url": "http://timdown.co.uk/" + }, + "licenses": [ + { + "type": "MIT", + "url": "http://www.opensource.org/licenses/mit-license.php" + } + ], + "keywords": [ + "input", + "selection", + "caret", + "textarea", + "jquery" + ], + "bugs": { + "url": "https://github.com/timdown/rangyinputs/issues" + }, + "homepage": "https://github.com/timdown/rangyinputs", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/timdown/rangyinputs.git" + }, + "dependencies": {} +}