Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
21
Frontend-Learner/node_modules/regexp-ast-analysis/LICENSE
generated
vendored
Normal file
21
Frontend-Learner/node_modules/regexp-ast-analysis/LICENSE
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 Michael Schmidt
|
||||
|
||||
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.
|
||||
29
Frontend-Learner/node_modules/regexp-ast-analysis/README.md
generated
vendored
Normal file
29
Frontend-Learner/node_modules/regexp-ast-analysis/README.md
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# RegExp AST analysis
|
||||
|
||||
[](https://github.com/RunDevelopment/regexp-ast-analysis/actions)
|
||||
[](https://www.npmjs.com/package/regexp-ast-analysis)
|
||||
|
||||
This is a library providing functionalities to analyse [JavaScript RegExp](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp).
|
||||
|
||||
All functions operate on AST nodes produced by [regexpp](https://github.com/mysticatea/regexpp). Characters are parsed by [refa](https://github.com/RunDevelopment/refa).
|
||||
|
||||
## Usage
|
||||
|
||||
Install the library using npm:
|
||||
|
||||
```bash
|
||||
npm i regexp-ast-analysis
|
||||
```
|
||||
|
||||
Import the library:
|
||||
|
||||
```js
|
||||
import * as RAA from "regexp-ast-analysis";
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
Links to the full API documentation:
|
||||
|
||||
- [Latest release](https://rundevelopment.github.io/regexp-ast-analysis/docs/latest/)
|
||||
- [Development](https://rundevelopment.github.io/regexp-ast-analysis/docs/dev/)
|
||||
1350
Frontend-Learner/node_modules/regexp-ast-analysis/index.d.ts
generated
vendored
Normal file
1350
Frontend-Learner/node_modules/regexp-ast-analysis/index.d.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
Frontend-Learner/node_modules/regexp-ast-analysis/index.js
generated
vendored
Normal file
2
Frontend-Learner/node_modules/regexp-ast-analysis/index.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
Frontend-Learner/node_modules/regexp-ast-analysis/index.js.map
generated
vendored
Normal file
1
Frontend-Learner/node_modules/regexp-ast-analysis/index.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
64
Frontend-Learner/node_modules/regexp-ast-analysis/package.json
generated
vendored
Normal file
64
Frontend-Learner/node_modules/regexp-ast-analysis/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"name": "regexp-ast-analysis",
|
||||
"version": "0.7.1",
|
||||
"description": "A library for analysing JS RegExp",
|
||||
"main": "index",
|
||||
"scripts": {
|
||||
"check": "npm run lint && npx tsc --noEmit && cd tests && npx tsc --noEmit",
|
||||
"lint": "npx eslint --ignore-path .gitignore **/*.ts",
|
||||
"test": "cd tests && mocha -r ts-node/register '**/*.ts'",
|
||||
"test:coverage": "cd tests && nyc --reporter=html mocha -r ts-node/register '**/*.ts'",
|
||||
"build": "npx rimraf ./index.* .out/** && npx tsc && rollup -c && npm run build:dts",
|
||||
"build:dts": "dts-bundle-generator -o index.d.ts src/index.ts --export-referenced-types=false && prettier --write index.d.ts",
|
||||
"build:docs": "typedoc",
|
||||
"prepublishOnly": "npm run build"
|
||||
},
|
||||
"keywords": [
|
||||
"regex",
|
||||
"regexp",
|
||||
"ast"
|
||||
],
|
||||
"author": "Michael Schmidt",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/RunDevelopment/regexp-ast-analysis#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/RunDevelopment/regexp-ast-analysis.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-node-resolve": "^9.0.0",
|
||||
"@types/chai": "^4.3.4",
|
||||
"@types/mocha": "^10.0.1",
|
||||
"@types/node": "^12.19.16",
|
||||
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
||||
"@typescript-eslint/parser": "^5.57.0",
|
||||
"chai": "^4.3.7",
|
||||
"dts-bundle-generator": "^5.9.0",
|
||||
"eslint": "^8.37.0",
|
||||
"eslint-config-prettier": "^8.8.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"jest-resolve": "^29.5.0",
|
||||
"mocha": "^10.2.0",
|
||||
"mocha-chai-jest-snapshot": "^1.1.4",
|
||||
"nyc": "^15.1.0",
|
||||
"prettier": "^2.8.7",
|
||||
"rimraf": "^3.0.2",
|
||||
"rollup": "^2.38.5",
|
||||
"rollup-plugin-terser": "^7.0.2",
|
||||
"ts-node": "^8.10.2",
|
||||
"typedoc": "^0.24.8",
|
||||
"typescript": "5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@eslint-community/regexpp": "^4.8.0",
|
||||
"refa": "^0.12.1"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.js.map",
|
||||
"index.d.ts"
|
||||
],
|
||||
"engines": {
|
||||
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue