diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..70b0f8f7 --- /dev/null +++ b/.npmignore @@ -0,0 +1,7 @@ +.airtap.yml +.appveyor.yml +.github/ +.travis.yml +CONTRIBUTING.md +scripts/ +test/ diff --git a/AUTHORS.md b/AUTHORS.md index 04b0b9f0..ba883f0b 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -130,4 +130,4 @@ - Raymond Tan (now-raymond@users.noreply.github.com) - Kaylee (34007889+KayleePop@users.noreply.github.com) -#### Generated by bin/update-authors.sh. +#### Generated by scripts/update-authors.sh. diff --git a/package.json b/package.json index 2c111c13..70b0c3ef 100644 --- a/package.json +++ b/package.json @@ -119,6 +119,6 @@ "test-browser": "airtap -- test/*.js test/browser/*.js", "test-browser-local": "airtap --local -- test/*.js test/browser/*.js", "test-node": "tape test/*.js test/node/*.js", - "update-authors": "./bin/update-authors.sh" + "update-authors": "./scripts/update-authors.sh" } } diff --git a/bin/update-authors.sh b/scripts/update-authors.sh similarity index 90% rename from bin/update-authors.sh rename to scripts/update-authors.sh index 6735eb47..07c04f5a 100755 --- a/bin/update-authors.sh +++ b/scripts/update-authors.sh @@ -18,6 +18,6 @@ END { print "# Authors\n\n"; print "#### Ordered by first contribution.\n\n"; print @authors, "\n"; - print "#### Generated by bin/update-authors.sh.\n"; + print "#### Generated by scripts/update-authors.sh.\n"; } ' > AUTHORS.md