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>2020-05-12 17:46:26 +0300
committerFeross Aboukhadijeh <feross@feross.org>2020-05-12 17:46:26 +0300
commit32f35f9b658be209f1816efe09d8bb3e8683260b (patch)
treed6d6a49219266fae9e9dc04e4d5c3ff3750a695b /package.json
parentf18440fbbfd1466d4f028bc97ee6bea2d8814a1b (diff)
tell `standard to ignore `webtorrent.chromeapp.js`
Diffstat (limited to 'package.json')
-rw-r--r--package.json36
1 files changed, 21 insertions, 15 deletions
diff --git a/package.json b/package.json
index f21de99..b3e66cb 100644
--- a/package.json
+++ b/package.json
@@ -93,6 +93,20 @@
"engines": {
"node": ">=10"
},
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
"homepage": "https://webtorrent.io",
"keywords": [
"bittorrent",
@@ -123,26 +137,18 @@
"build-js": "browserify --standalone WebTorrent . | minify --mangle=false > webtorrent.min.js",
"build-js-debug": "browserify --standalone WebTorrent . > webtorrent.debug.js",
"size": "npm run size-js && npm run size-disc",
- "size-js": "npm run build && cat webtorrent.min.js | gzip | wc -c",
"size-disc": "browserify --full-paths . | discify --open",
+ "size-js": "npm run build && cat webtorrent.min.js | gzip | wc -c",
"test": "standard && npm run test-node && npm run test-browser",
"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": "./scripts/update-authors.sh"
},
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
+ "standard": {
+ "ignore": [
+ "webtorrent.min.js",
+ "webtorrent.chromeapp.js"
+ ]
+ }
}