feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

42
Skills/@be/be/node_modules/estraverse/package.json generated vendored Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "estraverse",
"description": "ECMAScript JS AST traversal functions",
"homepage": "https://github.com/Constellation/estraverse",
"main": "estraverse.js",
"version": "1.5.1",
"engines": {
"node": ">=0.4.0"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "utatane.tea@gmail.com",
"web": "http://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "http://github.com/Constellation/estraverse.git"
},
"devDependencies": {
"mocha": "~1.12.0",
"chai": "~1.7.2",
"jshint": "2.1.5",
"coffee-script": "~1.6.3",
"xyz": "^0.4.0"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/Constellation/estraverse/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "npm run-script lint && npm run-script unit-test",
"lint": "jshint estraverse.js",
"unit-test": "mocha --compilers coffee:coffee-script",
"release-major": "xyz --increment major",
"release-minor": "xyz --increment minor",
"release-patch": "xyz --increment patch"
}
}