-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To prepare for a release on Bower, added bower.json describing the project. In the future, if new layers are added, they can be added to the main list. This is only for the 1.0.0-rc.1 version of Leaflet, as specified in the dependencies. Also added a .gitignore to ignore the bower_components directory (and also test directories while I'm at it).
- Loading branch information
1 parent
df1813a
commit 76b207d
Showing
2 changed files
with
32 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
bower_components | ||
test | ||
tests |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "glayers.leaflet", | ||
"description": "Generic map layers for Leaflet 1.0.0-rc.1", | ||
"keywords": [ | ||
"leaflet", | ||
"plugin", | ||
"canvas", | ||
"layer" | ||
], | ||
"homepage": "https://github.com/sumbera/glayers.leaflet", | ||
"authors": [ | ||
"Stanislav Sumbera" | ||
], | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"dependencies": { | ||
"leaflet": ">= 1.0.0-rc.1" | ||
}, | ||
"main": [ | ||
"L.CanvasLayer.js" | ||
], | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
] | ||
} |