Skip to content

Commit 71b255a

Browse files
author
Philipp Alferov
committed
Fix npm metadata
1 parent 07d742f commit 71b255a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"name": "angular-file-saver",
33
"version": "0.0.1",
4-
"description": "Provides integration between FileSaver.js (implements HTML5 saveAs()) and angular",
4+
"description": "An AngularJS service that implements the HTML5 W3C saveAs() in browsers that do not natively support it",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/alferov/angular-file-saver.git"
88
},
9+
"main": [
10+
"src/file-saver.js"
11+
],
912
"keywords": [
1013
"filesaver",
1114
"angular",
@@ -22,10 +25,9 @@
2225
"homepage": "https://github.com/alferov/angular-file-saver",
2326
"devDependencies": {
2427
"gulp": "^3.9.0",
25-
"gulp-concat": "^2.5.2",
2628
"gulp-load-plugins": "^0.10.0",
2729
"gulp-plumber": "^1.0.1",
28-
"gulp-size": "^1.2.1",
30+
"gulp-rename": "^1.2.2",
2931
"gulp-uglify": "^1.2.0"
3032
}
3133
}

src/file-saver.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* angular-file-saver
22
*
3-
* Provides integration between FileSaver.js and Angular
3+
* A AngularJS service that implements the HTML5 W3C saveAs() in browsers that
4+
* do not natively support it
45
*
56
* (c) 2015 Philipp Alferov
67
* License: MIT

0 commit comments

Comments
 (0)