Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit dd90616

Browse filesBrowse files
committed
Updated license link and package information.
1 parent c0ace2f commit dd90616
Copy full SHA for dd90616

File tree

Expand file treeCollapse file tree

7 files changed

+25
-8
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

7 files changed

+25
-8
lines changed
Open diff view settings
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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).
Collapse file

‎index.html‎

Copy file name to clipboardExpand all lines: index.html
+1-1Lines 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">
Collapse file

‎md5.js‎

Copy file name to clipboardExpand all lines: md5.js
+1-1Lines 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
Collapse file

‎package.json‎

Copy file name to clipboardExpand all lines: package.json
+19-2Lines 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
}
Collapse file

‎test/index.html‎

Copy file name to clipboardExpand all lines: test/index.html
+1-1Lines 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">
Collapse file

‎test/node-qunit.js‎

Copy file name to clipboardExpand all lines: test/node-qunit.js
+1-1Lines 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 */
Collapse file

‎test/test.js‎

Copy file name to clipboardExpand all lines: test/test.js
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.