Skip to content

Commit

Permalink
adding LICENSE to package installs - closes #174
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneyrehm committed Oct 12, 2014
1 parent 2a98b53 commit 9861b3f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,10 @@ URI.js is published under the [MIT license](http://www.opensource.org/licenses/m

## Changelog ##

### master / development ###

* fixing inclusion of LICENSE in packages - ([Issue #174](https://github.com/medialize/URI.js/issues/174))

### 1.14.1 (October 1st 2014) ###

* fixing handling of String instances (not string primitives) - ([Issue #146](https://github.com/medialize/URI.js/issues/146))
Expand Down
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license"
},
{
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-3.0"
}
],
"description": "URI.js is a Javascript library for working with URLs.",
Expand Down Expand Up @@ -59,9 +55,9 @@
"src/URI.min.js",
"src/jquery.URI.min.js",
"src/URI.fragmentQuery.js",
"src/URI.fragmentURI.js"
"src/URI.fragmentURI.js",
"LICENSE.txt"
],

"jam": {
"main": "src/URI.js",
"dependencies": {
Expand All @@ -77,18 +73,24 @@
"src/URI.min.js",
"src/jquery.URI.min.js",
"src/URI.fragmentQuery.js",
"src/URI.fragmentURI.js"
"src/URI.fragmentURI.js",
"LICENSE.txt"
]
},

"npmName": "URIjs",
"npmFileMap": [
{
"basePath": "/src/",
"files": [
"*.js"
]
}
},
{
"basePath": "/",
"files": [
"LICENSE.txt"
]
},
],
"devDependencies": {
"jshint-stylish": "~0.1.5",
Expand Down

0 comments on commit 9861b3f

Please sign in to comment.