Skip to content

Commit e971284

Browse files
committed
Updated license link and package information.
1 parent 5614516 commit e971284

File tree

7 files changed

+28
-10
lines changed

7 files changed

+28
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var data = {
3737
"title": "JavaScript Templates",
3838
"license": {
3939
"name": "MIT license",
40-
"url": "http://creativecommons.org/licenses/MIT/"
40+
"url": "http://www.opensource.org/licenses/MIT"
4141
},
4242
"features": [
4343
"lightweight & fast",
@@ -306,4 +306,4 @@ For loop:
306306
```
307307

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

index.html

Lines changed: 2 additions & 2 deletions
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">
@@ -109,7 +109,7 @@ <h4>Features</h4>
109109
"title": "JavaScript Templates",
110110
"license": {
111111
"name": "MIT license",
112-
"url": "http://creativecommons.org/licenses/MIT/"
112+
"url": "http://www.opensource.org/licenses/MIT"
113113
},
114114
"features": [
115115
"lightweight & fast",

package.json

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,37 @@
11
{
22
"name": "blueimp-tmpl",
3+
"version": "1.0.2",
4+
"title": "JavaScript Templates",
35
"description": "< 1KB lightweight, fast & powerful JavaScript templating engine with zero dependencies. Compatible with server-side environments like node.js, module loaders like RequireJS and all web browsers.",
6+
"keywords": [
7+
"javascript",
8+
"templates",
9+
"templating"
10+
],
411
"homepage": "https://github.com/blueimp/JavaScript-Templates",
512
"author": {
613
"name": "Sebastian Tschan",
714
"url": "https://blueimp.net"
815
},
16+
"maintainers": [
17+
{
18+
"name": "Sebastian Tschan",
19+
"url": "https://blueimp.net"
20+
}
21+
],
922
"repository": {
1023
"type": "git",
1124
"url": "git://github.com/blueimp/JavaScript-Templates.git"
1225
},
1326
"bugs": "https://github.com/blueimp/JavaScript-Templates/issues",
27+
"licenses": [
28+
{
29+
"type": "MIT",
30+
"url": "http://www.opensource.org/licenses/MIT"
31+
}
32+
],
1433
"scripts": {
1534
"test": "node ./test/test.js"
1635
},
17-
"main": "tmpl",
18-
"version": "1.0.2"
36+
"main": "tmpl"
1937
}

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 */

tmpl.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
* Inspired by John Resig's JavaScript Micro-Templating:
1212
* http://ejohn.org/blog/javascript-micro-templating/

0 commit comments

Comments
 (0)