feat:node-modules

This commit is contained in:
houjunxiang
2025-11-24 10:26:18 +08:00
parent 753766893b
commit 8a3e48d856
8825 changed files with 567399 additions and 1 deletions

2
node_modules/mutation-observer/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,2 @@
components
build

28
node_modules/mutation-observer/History.md generated vendored Normal file
View File

@@ -0,0 +1,28 @@
1.0.3 / 2017-07-25
==================
* With the posibility of the MutationEvent being deprecated, check if exists prior to usage (#8)
1.0.2 / 2015-07-07
==================
* fix delete as a reserved word issue on IE8 (#4, @kaesonho)
1.0.1 / 2015-03-10
==================
* package: re-add the "component" section
* package: use public git URL
1.0.0 / 2014-12-09
==================
* Move away from `component.json`; into webmodules organization.
* Add a MutationObserver polyfill for IE9-10. (written by the Polymer contributors)
* Change license from MIT to BSD to match the Polymer polyfill license.
0.0.1 / 2013-02-09
==================
* Initial release

55
node_modules/mutation-observer/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,55 @@
// Copyright (c) 2014 Automattic Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Automattic Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Copyright (c) 2012 The Polymer Authors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

22
node_modules/mutation-observer/Readme.md generated vendored Normal file
View File

@@ -0,0 +1,22 @@
# mutation-observer
Exposes the native `MutationObserver` API provided by the browser, or a polyfill based on mutation events. (For compatibility with IE9-10.)
MutationObserver polyfill by the [Polymer Project](https://www.polymer-project.org/).
## Installation
```bash
$ npm install mutation-observer
```
## API
```javascript
var MutationObserver = require('mutation-observer');
```
## License
BSD (See LICENSE file)

586
node_modules/mutation-observer/index.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

22
node_modules/mutation-observer/package.json generated vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "mutation-observer",
"description": "Exposes the `MutationObserver` API, or a polyfill based on mutation events for IE 9-10.",
"tags": [
"polyfill",
"webmodule",
"mutation",
"observer",
"browser"
],
"version": "1.0.3",
"dependencies": {},
"component": {
"scripts": {
"mutation-observer/index.js": "index.js"
}
},
"repository": {
"type": "git",
"url": "git://github.com/webmodules/mutation-observer.git"
}
}