From 9534bbbdf7974d03e9115faaffbf72717edbc380 Mon Sep 17 00:00:00 2001 From: namniak Date: Fri, 27 Jun 2014 02:29:15 -0400 Subject: [PATCH] added bower & npm repositories --- .npmignore | 1 + .npmignore~ | 0 package.json | 3 ++- package.json~ | 30 ++++++++++++++++++++++++++++++ 4 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 .npmignore create mode 100644 .npmignore~ create mode 100755 package.json~ diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +node_modules diff --git a/.npmignore~ b/.npmignore~ new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json index 8b764ee..ad55756 100755 --- a/package.json +++ b/package.json @@ -1,9 +1,10 @@ { "name": "canvas-text-wrapper", - "description": "Javascript canvas text wrapper that automatically breaks the text into lines on a rule of your choice with available horizontal and vertical align options.", + "description": "JavaScript canvas text wrapper that automatically splits a string into lines on specified rule with optional alignments and padding.", "version": "0.1.0", "license": "MIT", "main": "CanvasTextWrapper.min.js", + "homepage": "http://namniak.github.io/CanvasTextWrapper/", "repository": { "type": "git", "url": "https://github.com/namniak/CanvasTextWrapper" diff --git a/package.json~ b/package.json~ new file mode 100755 index 0000000..2a0f309 --- /dev/null +++ b/package.json~ @@ -0,0 +1,30 @@ +{ + "name": "canvas-text-wrapper", + "description": "JavaScript canvas text wrapper that automatically splits a string into lines on specified rule with optional alignments and padding.", + "version": "0.1.0", + "license": "MIT", + "main": "CanvasTextWrapper.min.js", + "homepage": "http://namniak.github.io/CanvasTextWrapper/", + "repository": { + "type": "git", + "url": "https://github.com/namniak/CanvasTextWrapper" + }, + "author": "Vadim Namniak (https://github.com/namniak)", + "bugs": { + "url": "https://github.com/namniak/CanvasTextWrapper/issues" + }, + "directories": { + "example": "examples" + }, + "dependencies": { + "grunt": "^0.4.5", + "grunt-contrib-jshint": "^0.6.5", + "grunt-contrib-nodeunit": "^0.2.2", + "grunt-contrib-uglify": "^0.2.7", + "uglify-save-license": "^0.4.1" + }, + "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + } +}