Skip to content

Commit

Permalink
Added Bower and NuGet support
Browse files Browse the repository at this point in the history
  • Loading branch information
khorvat committed Oct 20, 2014
1 parent 01ff518 commit 0a95ca3
Show file tree
Hide file tree
Showing 3 changed files with 237 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
node_modules/
node_modules/
31 changes: 31 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "UriTemplate",
"version": "0.3.5",
"main": "bin/UriTemplate.js",
"description": "An UriTemplate implementation of rfc 6570",
"homepage": "https://www.github.com/fxa/uritemplate-js",
"keywords": [
"util",
"uri",
"template",
"rfc6570"
],
"author": "Franz X Antesberger",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"nuget",
"test",
"tests",
"src",
"spec",
"bower.json",
"gulpfile.js",
"package.json",
"README.md"
],
"license": "MIT",
"dependencies" : {
}
}
205 changes: 205 additions & 0 deletions nuget/UriTemplateJs.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>UriTemplateJs</id>
<version>$version$</version>
<title>JavaScript UriTemplate</title>
<authors>Franz X Antesberger</authors>
<owners>Franz X Antesberger</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An JavaScript UriTemplate implementation of rfc 6570.</description>
<summary />
<copyright>Franz X Antesberger</copyright>
<language>en-US</language>
<tags>Javascript, URI, RFC</tags>
<dependencies>
</dependencies>
</metadata>
<files>
<file src="..\bin\uritemplate.js" target="content\Scripts\uritemplate.js" />
<file src="..\bin\uritemplate-min.js" target="content\Scripts\uritemplate-min.js" />
</files>
</package>























































































































































































0 comments on commit 0a95ca3

Please sign in to comment.