From 33800e6437a915df8d1ff2e311ad6e36e0b38e75 Mon Sep 17 00:00:00 2001 From: Marcin Tabaka Date: Thu, 18 Jan 2018 14:35:39 +0100 Subject: [PATCH] Add `package.json` file to enable using package via npm --- package.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..77f884a --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "jquery.selection", + "version": "1.0.1", + "description": "jQuery.selection is a jQuery plugin that operate selection text/caret.", + "keywords": [ + "selection" + ], + "homepage": "http://madapaja.github.io/jquery.selection/", + "author": "Koji Iwasaki (http://blog.madapaja.net)", + "main": "./src/jquery.selection.js", + "repository": { + "type": "git", + "url": "https://github.com/madapaja/jquery.selection.git" + }, + "bugs": { + "url": "https://github.com/madapaja/jquery.selection/issues" + }, + "license": { + "type": "MIT", + "url": "https://raw.github.com/madapaja/jquery.selection/master/src/jquery.selection.js" + } +}