Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
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