Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit f8b1727

Browse files
committed
Improve the bower config and bump to 1.0.0
1 parent 2d357e4 commit f8b1727

File tree

5 files changed

+31
-10
lines changed

5 files changed

+31
-10
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ node_modules
33

44
*.sublime-project
55
*.sublime-workspace
6+
7+
bower_components

bower.json

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
11
{
2-
"name": "angular-numeraljs",
3-
"version": "0.1.0",
4-
"main": ["./src/angular-numeraljs.js"],
5-
"ignore": [],
6-
"dependencies": {}
2+
"name": "angular-numeraljs",
3+
"author": "Dave Bauman",
4+
"version": "1.0.0",
5+
"license": "MIT",
6+
"main": ["./dist/angular-numeraljs.js"],
7+
"repository": {
8+
"type": "git",
9+
"url": "git@github.com:baumandm/angular-numeraljs.git"
10+
},
11+
"dependencies": {
12+
"numeral": "^1.0"
13+
},
14+
"keywords": [
15+
"numeral",
16+
"numeraljs",
17+
"angular",
18+
"angularjs"
19+
],
20+
"ignore": [
21+
"test",
22+
"bower_components",
23+
"bower.json",
24+
"gruntfile.js"
25+
]
726
}

dist/angular-numeraljs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* AngularJS filter for Numeral.js: number formatting as a filter
3-
* @version v0.1.0 - 2013-11-09
4-
* @link
3+
* @version v1.0.0 - 2014-08-21
4+
* @link https://github.com/baumandm/angular-numeraljs
55
* @author Dave Bauman <baumandm@gmail.com>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
77
*/

dist/angular-numeraljs.min.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* AngularJS filter for Numeral.js: number formatting as a filter
3-
* @version v0.1.0 - 2013-11-09
4-
* @link
3+
* @version v1.0.0 - 2014-08-21
4+
* @link https://github.com/baumandm/angular-numeraljs
55
* @author Dave Bauman <baumandm@gmail.com>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
77
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-numeraljs",
33
"description": "AngularJS filter for Numeral.js: number formatting as a filter",
4-
"version": "0.1.0",
4+
"version": "1.0.0",
55
"homepage": "https://github.com/baumandm/angular-numeraljs",
66
"author": "Dave Bauman <baumandm@gmail.com>",
77
"repository": {

0 commit comments

Comments
 (0)