first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

9
build/node_modules/ncname/index.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
'use strict';
var xmlChars = require('xml-char-classes');
function getRange(re) {
return re.source.slice(1, -1);
}
// http://www.w3.org/TR/1999/REC-xml-names-19990114/#NT-NCName
module.exports = new RegExp('^[' + getRange(xmlChars.letter) + '_][' + getRange(xmlChars.letter) + getRange(xmlChars.digit) + '\\.\\-_' + getRange(xmlChars.combiningChar) + getRange(xmlChars.extender) + ']*$');

71
build/node_modules/ncname/package.json generated vendored Normal file
View File

@@ -0,0 +1,71 @@
{
"_from": "ncname@1.0.x",
"_id": "ncname@1.0.0",
"_inBundle": false,
"_integrity": "sha1-W1etGLHKCShk72Kwse2BlPODtxw=",
"_location": "/ncname",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "ncname@1.0.x",
"name": "ncname",
"escapedName": "ncname",
"rawSpec": "1.0.x",
"saveSpec": null,
"fetchSpec": "1.0.x"
},
"_requiredBy": [
"/html-minifier"
],
"_resolved": "https://registry.npmjs.org/ncname/-/ncname-1.0.0.tgz",
"_shasum": "5b57ad18b1ca092864ef62b0b1ed8194f383b71c",
"_spec": "ncname@1.0.x",
"_where": "/Users/asciidisco/Desktop/asciidisco.com/build/node_modules/html-minifier",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/ncname/issues"
},
"bundleDependencies": false,
"dependencies": {
"xml-char-classes": "^1.0.0"
},
"deprecated": false,
"description": "Regular expression for matching XML NCName",
"devDependencies": {
"mocha": "*"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/ncname#readme",
"keywords": [
"ncname",
"ncnamechar",
"xml",
"re",
"regex",
"name",
"element",
"tag",
"match",
"unicode"
],
"license": "MIT",
"name": "ncname",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/ncname.git"
},
"scripts": {
"test": "mocha"
},
"version": "1.0.0"
}

28
build/node_modules/ncname/readme.md generated vendored Normal file
View File

@@ -0,0 +1,28 @@
# ncname [![Build Status](https://travis-ci.org/sindresorhus/ncname.svg?branch=master)](https://travis-ci.org/sindresorhus/ncname)
> Regular expression for matching [XML NCName](http://www.w3.org/TR/1999/REC-xml-names-19990114/#NT-NCName)
## Install
```sh
$ npm install --save ncname
```
## Usage
```js
var ncname = require('ncname');
ncname.test('hællæ');
//=> true
ncname.test('$unicorn');
//=> false
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)