Skip to content

Commit d3a6c7f

Browse files
committedFeb 11, 2014
Package: improving NPM and Bower published files
- Package.json using files prop: https://npmjs.org/doc/json.html#files - Added license file and link to bower
1 parent 4754e95 commit d3a6c7f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
 

‎bower.json

+2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
"qunit/qunit.js",
66
"qunit/qunit.css"
77
],
8+
"license": "https://github.com/jquery/qunit/blob/master/MIT-LICENSE.txt",
89
"ignore": [
910
"**/.*",
11+
"!MIT-LICENSE.txt",
1012
"package.json",
1113
"bower.json",
1214
"Gruntfile.js",

‎package.json

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@
2626
"url": "https://github.com/jquery/qunit/blob/master/MIT-LICENSE.txt"
2727
}
2828
],
29+
"files": [
30+
"qunit/qunit.js",
31+
"qunit/qunit.css",
32+
"MIT-LICENSE.txt"
33+
],
2934
"dependencies": {},
3035
"devDependencies": {
3136
"grunt": "0.4.2",

0 commit comments

Comments
 (0)
Please sign in to comment.