chore: update node_modules with new binary files and dependencies
- Add new binary files for nodemon, onnxruntime-web, and xenova/transformers - Update various JavaScript and TypeScript files in node_modules - Remove unused files and dependencies - Add new test fixtures and documentation files
This commit is contained in:
21
node_modules/platform/LICENSE
generated
vendored
Normal file
21
node_modules/platform/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
Copyright 2014-2020 Benjamin Tan
|
||||
Copyright 2011-2013 John-David Dalton
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
76
node_modules/platform/README.md
generated
vendored
Normal file
76
node_modules/platform/README.md
generated
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
# Platform.js v1.3.5
|
||||
|
||||
A platform detection library that works on nearly all JavaScript platforms.
|
||||
|
||||
## Disclaimer
|
||||
|
||||
Platform.js is for informational purposes only & **not** intended as a substitution for feature detection/inference checks.
|
||||
|
||||
## Documentation
|
||||
|
||||
* [doc/README.md](https://github.com/bestiejs/platform.js/blob/master/doc/README.md#readme)
|
||||
* [wiki/Changelog](https://github.com/bestiejs/platform.js/wiki/Changelog)
|
||||
* [wiki/Roadmap](https://github.com/bestiejs/platform.js/wiki/Roadmap)
|
||||
* [platform.js demo](https://bestiejs.github.io/platform.js/) (See also [whatsmyua.info](https://www.whatsmyua.info/) for comparisons between platform.js and other platform detection libraries)
|
||||
|
||||
## Installation
|
||||
|
||||
In a browser:
|
||||
|
||||
```html
|
||||
<script src="platform.js"></script>
|
||||
```
|
||||
|
||||
In an AMD loader:
|
||||
|
||||
```js
|
||||
require(['platform'], function(platform) {/*…*/});
|
||||
```
|
||||
|
||||
Using npm:
|
||||
|
||||
```shell
|
||||
$ npm i --save platform
|
||||
```
|
||||
|
||||
In Node.js:
|
||||
|
||||
```js
|
||||
var platform = require('platform');
|
||||
```
|
||||
|
||||
Usage example:
|
||||
|
||||
```js
|
||||
// on IE10 x86 platform preview running in IE7 compatibility mode on Windows 7 64 bit edition
|
||||
platform.name; // 'IE'
|
||||
platform.version; // '10.0'
|
||||
platform.layout; // 'Trident'
|
||||
platform.os; // 'Windows Server 2008 R2 / 7 x64'
|
||||
platform.description; // 'IE 10.0 x86 (platform preview; running in IE 7 mode) on Windows Server 2008 R2 / 7 x64'
|
||||
|
||||
// or on an iPad
|
||||
platform.name; // 'Safari'
|
||||
platform.version; // '5.1'
|
||||
platform.product; // 'iPad'
|
||||
platform.manufacturer; // 'Apple'
|
||||
platform.layout; // 'WebKit'
|
||||
platform.os; // 'iOS 5.0'
|
||||
platform.description; // 'Safari 5.1 on Apple iPad (iOS 5.0)'
|
||||
|
||||
// or parsing a given UA string
|
||||
var info = platform.parse('Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7.2; en; rv:2.0) Gecko/20100101 Firefox/4.0 Opera 11.52');
|
||||
info.name; // 'Opera'
|
||||
info.version; // '11.52'
|
||||
info.layout; // 'Presto'
|
||||
info.os; // 'Mac OS X 10.7.2'
|
||||
info.description; // 'Opera 11.52 (identifying as Firefox 4.0) on Mac OS X 10.7.2'
|
||||
```
|
||||
|
||||
## Support
|
||||
|
||||
Tested in Chrome 82-83, Firefox 77-78, IE 11, Edge 82-83, Safari 12-13, Node.js 4-14, & PhantomJS 2.1.1.
|
||||
|
||||
## BestieJS
|
||||
|
||||
Platform.js is part of the BestieJS *“Best in Class”* module collection. This means we promote solid browser/environment support, ES5+ precedents, unit testing, & plenty of documentation.
|
||||
30
node_modules/platform/package.json
generated
vendored
Normal file
30
node_modules/platform/package.json
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "platform",
|
||||
"version": "1.3.6",
|
||||
"description": "A platform detection library that works on nearly all JavaScript platforms.",
|
||||
"license": "MIT",
|
||||
"main": "platform.js",
|
||||
"keywords": "environment, platform, ua, useragent",
|
||||
"author": "Benjamin Tan <demoneaux@gmail.com>",
|
||||
"contributors": [
|
||||
"Benjamin Tan <demoneaux@gmail.com>",
|
||||
"John-David Dalton <john.david.dalton@gmail.com>",
|
||||
"Mathias Bynens <mathias@qiwi.be>"
|
||||
],
|
||||
"repository": "bestiejs/platform.js",
|
||||
"scripts": {
|
||||
"doc": "docdown platform.js doc/README.md style=github title=\"Platform.js v${npm_package_version}\" toc=properties url=https://github.com/bestiejs/platform.js/blob/${npm_package_version}/platform.js",
|
||||
"prepublishOnly": "node bump/bump.js ${npm_package_version}",
|
||||
"test": "node test/test.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"docdown": "^0.7.3",
|
||||
"qunit-extras": "^1.5.0",
|
||||
"qunitjs": "^1.23.1",
|
||||
"replace": "^1.1.0",
|
||||
"requirejs": "^2.3.6"
|
||||
},
|
||||
"files": [
|
||||
"platform.js"
|
||||
]
|
||||
}
|
||||
1260
node_modules/platform/platform.js
generated
vendored
Normal file
1260
node_modules/platform/platform.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user