-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed offset bug, added publish info
- Loading branch information
Tony Germaneri
committed
Nov 30, 2016
1 parent
7e43f2e
commit 54187df
Showing
3 changed files
with
44 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
{ | ||
"name": "canvasGrid", | ||
"name": "canvas-datagrid", | ||
"main": "lib/main.js", | ||
"ignore": [] | ||
"version": "0.9.0", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"homepage": "https://github.com/TonyGermaneri/canvas-datagrid", | ||
"authors": [ | ||
"Tony Germaneri <Tony.Germaneri@gmail.com>" | ||
], | ||
"description": "Canvas based data grid", | ||
"keywords": [ | ||
"Datagrid", | ||
"grid", | ||
"canvas" | ||
], | ||
"license": "BSD" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
{ | ||
"name": "canvas-datagrid", | ||
"version": "0.9.0", | ||
"description": "Canvas based data grid", | ||
"author": "tony.germaneri@gmail.com", | ||
"version": "0.0.1", | ||
"private": false, | ||
"license": "BSD" | ||
"main": "./lib/main.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/TonyGermaneri/canvas-datagrid.git" | ||
}, | ||
"keywords": [ | ||
"canvas", | ||
"datagrid", | ||
"grid" | ||
], | ||
"author": "Tony Germaneri <Tony.Germaneri@gmail.com>", | ||
"license": "BSD-3-Clause", | ||
"bugs": { | ||
"url": "https://github.com/TonyGermaneri/canvas-datagrid/issues" | ||
}, | ||
"homepage": "https://github.com/TonyGermaneri/canvas-datagrid#readme" | ||
} |