Add node modules and new code for release (#39)
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
This commit is contained in:
parent
a10d84bc2e
commit
7ad2aa66bb
7655 changed files with 1763577 additions and 14 deletions
20
node_modules/is-potential-custom-element-name/LICENSE-MIT.txt
generated
vendored
Normal file
20
node_modules/is-potential-custom-element-name/LICENSE-MIT.txt
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
Copyright Mathias Bynens <https://mathiasbynens.be/>
|
||||
|
||||
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.
|
9
node_modules/is-potential-custom-element-name/index.js
generated
vendored
Executable file
9
node_modules/is-potential-custom-element-name/index.js
generated
vendored
Executable file
|
@ -0,0 +1,9 @@
|
|||
// Generated using `npm run build`. Do not edit.
|
||||
|
||||
var regex = /^[a-z](?:[\-\.0-9_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u037D\u037F-\u1FFF\u200C\u200D\u203F\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])*-(?:[\-\.0-9_a-z\xB7\xC0-\xD6\xD8-\xF6\xF8-\u037D\u037F-\u1FFF\u200C\u200D\u203F\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]|[\uD800-\uDB7F][\uDC00-\uDFFF])*$/;
|
||||
|
||||
var isPotentialCustomElementName = function(string) {
|
||||
return regex.test(string);
|
||||
};
|
||||
|
||||
module.exports = isPotentialCustomElementName;
|
36
node_modules/is-potential-custom-element-name/package.json
generated
vendored
Normal file
36
node_modules/is-potential-custom-element-name/package.json
generated
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"name": "is-potential-custom-element-name",
|
||||
"version": "1.0.0",
|
||||
"description": "Check whether a given string matches the `PotentialCustomElementName` production as defined in the HTML Standard.",
|
||||
"homepage": "https://github.com/mathiasbynens/is-potential-custom-element-name",
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
"LICENSE-MIT.txt",
|
||||
"index.js"
|
||||
],
|
||||
"keywords": [
|
||||
"html",
|
||||
"custom element",
|
||||
"custom element name",
|
||||
"web components"
|
||||
],
|
||||
"license": "MIT",
|
||||
"author": {
|
||||
"name": "Mathias Bynens",
|
||||
"url": "https://mathiasbynens.be/"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mathiasbynens/is-potential-custom-element-name.git"
|
||||
},
|
||||
"bugs": "https://github.com/mathiasbynens/is-potential-custom-element-name/issues",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"mocha": "^2.2.1",
|
||||
"regenerate": "^1.3.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "node build.js",
|
||||
"test": "mocha"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue