Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2018-04-25 04:03:43 +0300
committerFeross Aboukhadijeh <feross@feross.org>2018-04-25 04:03:43 +0300
commit352c52792002dc2efd9e2e6b72982ef3297b68fd (patch)
tree75d3760b0db5d522618ca10a3d969e17b3a8cb4e /package.json
parent4022debc25b88a4f4e92d5f37ae5803fe3aa097e (diff)
Move internal scripts from bin/ to scripts/
By convention the bin/ folder is for user-facing command line scripts. Let's use scripts/ for internal scripts that don't need to be published.
Diffstat (limited to 'package.json')
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index 2c111c1..70b0c3e 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"
}
}