Skip to content

Commit dd90616

Browse files
committed
Updated license link and package information.
1 parent c0ace2f commit dd90616

File tree

7 files changed

+25
-8
lines changed

7 files changed

+25
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ var hash = md5("value", "key", true);
8181
```
8282

8383
## License
84-
The JavaScript MD5 script is released under the [MIT license](http://creativecommons.org/licenses/MIT/).
84+
The JavaScript MD5 script is released under the [MIT license](http://www.opensource.org/licenses/MIT).

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://blueimp.net
99
*
1010
* Licensed under the MIT license:
11-
* http://creativecommons.org/licenses/MIT/
11+
* http://www.opensource.org/licenses/MIT
1212
*/
1313
-->
1414
<html lang="en">

md5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* https://blueimp.net
77
*
88
* Licensed under the MIT license:
9-
* http://creativecommons.org/licenses/MIT/
9+
* http://www.opensource.org/licenses/MIT
1010
*
1111
* Based on
1212
* A JavaScript implementation of the RSA Data Security, Inc. MD5 Message

package.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
{
22
"name": "blueimp-md5",
3+
"version": "1.0.0",
4+
"title": "JavaScript MD5",
35
"description": "JavaScript MD5 implementation.",
6+
"keywords": [
7+
"JavaScript",
8+
"MD5"
9+
],
410
"homepage": "https://github.com/blueimp/JavaScript-MD5",
511
"author": {
612
"name": "Sebastian Tschan",
713
"url": "https://blueimp.net"
814
},
15+
"maintainers": [
16+
{
17+
"name": "Sebastian Tschan",
18+
"url": "https://blueimp.net"
19+
}
20+
],
921
"contributors": [
1022
{
1123
"name": "Paul Johnston",
@@ -17,9 +29,14 @@
1729
"url": "git://github.com/blueimp/JavaScript-MD5.git"
1830
},
1931
"bugs": "https://github.com/blueimp/JavaScript-MD5/issues",
32+
"licenses": [
33+
{
34+
"type": "MIT",
35+
"url": "http://www.opensource.org/licenses/MIT"
36+
}
37+
],
2038
"scripts": {
2139
"test": "node ./test/test.js"
2240
},
23-
"main": "md5",
24-
"version": "1.0.0"
41+
"main": "md5"
2542
}

test/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* https://blueimp.net
99
*
1010
* Licensed under the MIT license:
11-
* http://creativecommons.org/licenses/MIT/
11+
* http://www.opensource.org/licenses/MIT
1212
*/
1313
-->
1414
<html lang="en">

test/node-qunit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* https://blueimp.net
77
*
88
* Licensed under the MIT license:
9-
* http://creativecommons.org/licenses/MIT/
9+
* http://www.opensource.org/licenses/MIT
1010
*/
1111

1212
/*global require, console, process */

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* https://blueimp.net
77
*
88
* Licensed under the MIT license:
9-
* http://creativecommons.org/licenses/MIT/
9+
* http://www.opensource.org/licenses/MIT
1010
*/
1111

1212
/*global require */

0 commit comments

Comments
 (0)