Restructured the complete project
Showing
Jakefile.js
0 → 100644
bin/uritemplate-min.js
0 → 100644
bin/uritemplate.js
0 → 100644
This diff is collapsed.
build/fileConcatter.js
0 → 100644
build/hinter.js
0 → 100644
{ | ||
"name" : "uritemplate", | ||
"description" : "An UriTemplate implementation of rfc 6570", | ||
"homepage" : "https://www.github.com/fxa/uritemplate-js", | ||
"keywords" : ["util", "uri", "template", "rfc6570"], | ||
"author" : "Franz Antesberger", | ||
"contributors" : [], | ||
"dependencies" : [], | ||
"main" : "src/uritemplate.js", | ||
"licenses": [{ | ||
"name": "uritemplate", | ||
"description": "An UriTemplate implementation of rfc 6570", | ||
"homepage": "https://www.github.com/fxa/uritemplate-js", | ||
"keywords": ["util", "uri", "template", "rfc6570"], | ||
"author": "Franz Antesberger", | ||
"contributors": [], | ||
"dependencies": [], | ||
"main": "bin/uritemplate.js", | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "http://www.opensource.org/licenses/mit-license.php" | ||
}], | ||
} | ||
], | ||
"files": [ | ||
"src/uritemplate.js", | ||
"src", | ||
"test", | ||
"bin", | ||
"Jakefile.js", | ||
"own-testcases.json", | ||
"demo.html", | ||
"test.js", | ||
"demo_AMD.html", | ||
"README.md", | ||
"reqire.js", | ||
".gitmodules", | ||
"uritemplate-test/extended-tests.json", | ||
"uritemplate-test/negative-tests.json", | ||
... | ... | @@ -23,5 +30,5 @@ |
"uritemplate-test/spec-examples-by-sections.json", | ||
"uritemplate-test/spec-examples.json" | ||
], | ||
"version" : "0.1.4" | ||
"version": "0.2.0" | ||
} | ||
\ No newline at end of file |
src/LiteralExpression.js
0 → 100644
src/UriTemplate_.js
0 → 100644
src/VariableExpression.js
0 → 100644
src/charHelper.js
0 → 100644
src/encodingHelper.js
0 → 100644
src/isDefined.js
0 → 100644
src/objectHelper.js
0 → 100644
src/operators.js
0 → 100644
src/parse.js
0 → 100644
src/pctEncoder.js
0 → 100644
src/post.txt
0 → 100644
src/pre.txt
0 → 100644
src/rfcCharHelper.js
0 → 100644
Please register or sign in to comment