Website Structure

This commit is contained in:
supalerk-ar66 2026-01-13 10:46:40 +07:00
parent 62812f2090
commit 71f0676a62
22365 changed files with 4265753 additions and 791 deletions

38
Frontend-Learner/node_modules/regexp-tree/package.json generated vendored Normal file
View file

@ -0,0 +1,38 @@
{
"name": "regexp-tree",
"version": "0.1.27",
"license": "MIT",
"description": "Regular Expressions parser in JavaScript",
"repository": "DmitrySoshnikov/regexp-tree",
"homepage": "https://github.com/DmitrySoshnikov/regexp-tree",
"bugs": "https://github.com/DmitrySoshnikov/regexp-tree/issues",
"scripts": {
"build": "node ./scripts/build.js",
"watch": "node ./scripts/build.js --watch",
"test": "jest",
"prepublish": "npm run build && npm test",
"eslint": "eslint ./src/ && eslint ./bin/regexp-tree"
},
"bin": {
"regexp-tree": "./bin/regexp-tree"
},
"keywords": [
"regexp",
"parser",
"AST",
"tree",
"JavaScript",
"ECMAScript"
],
"author": "Dmitry Soshnikov",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-flow": "6.23.0",
"eslint": "^4.11.0",
"jest-cli": "^29.0.2",
"prettier": "^1.17.1",
"shelljs": "^0.8.5",
"syntax-cli": "^0.1.11"
}
}