Files
aitbc/dev/env/node_modules/enquirer/package.json
aitbc 816e258d4c refactor: move brother_node development artifact to dev/test-nodes subdirectory
Development Artifact Cleanup:
 BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location
- dev/test-nodes/brother_node/: Moved from root directory for better organization
- Contains development configuration, test logs, and test chain data
- No impact on production systems - purely development/testing artifact

 DEVELOPMENT ARTIFACTS IDENTIFIED:
- Chain ID: aitbc-brother-chain (test/development chain)
- Ports: 8010 (P2P) and 8011 (RPC) - different from production
- Environment: .env file with test configuration
- Logs: rpc.log and node.log from development testing session (March 15, 2026)

 ROOT DIRECTORY CLEANUP: Removed development clutter from production directory
- brother_node/ moved to dev/test-nodes/brother_node/
- Root directory now contains only production-ready components
- Development artifacts properly organized in dev/ subdirectory

DIRECTORY STRUCTURE IMPROVEMENT:
📁 dev/test-nodes/: Development and testing node configurations
🏗️ Root Directory: Clean production structure with only essential components
🧪 Development Isolation: Test environments separated from production

BENEFITS:
 Clean Production Directory: No development artifacts in root
 Better Organization: Development nodes grouped in dev/ subdirectory
 Clear Separation: Production vs development environments clearly distinguished
 Maintainability: Easier to identify and manage development components

RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
2026-03-30 17:09:06 +02:00

113 lines
2.2 KiB
JSON
Executable File

{
"name": "enquirer",
"description": "Stylish, intuitive and user-friendly prompt system. Fast and lightweight enough for small projects, powerful and extensible enough for the most advanced use cases.",
"version": "2.4.1",
"homepage": "https://github.com/enquirer/enquirer",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
],
"repository": "enquirer/enquirer",
"bugs": {
"url": "https://github.com/enquirer/enquirer/issues"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=8.6"
},
"scripts": {
"test": "mocha && tsc -p ./test/types",
"cover": "nyc --reporter=text --reporter=html mocha"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@types/node": "^8",
"gulp-format-md": "^2.0.0",
"inquirer": "^6.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prompts": "^1.2.1",
"time-require": "github:jonschlinkert/time-require",
"typescript": "^3.1.6"
},
"keywords": [
"answer",
"answers",
"ask",
"base",
"cli",
"command",
"command-line",
"confirm",
"enquirer",
"generator",
"generate",
"hyper",
"input",
"inquire",
"inquirer",
"interface",
"iterm",
"javascript",
"node",
"nodejs",
"prompt",
"prompts",
"promptly",
"question",
"readline",
"scaffold",
"scaffolding",
"scaffolder",
"stdin",
"stdout",
"terminal",
"tty",
"ui",
"yeoman",
"yo",
"zsh"
],
"lintDeps": {
"devDependencies": {
"files": {
"patterns": [
"examples/**/*.js",
"perf/*.js",
"recipes/*.js"
]
}
}
},
"verb": {
"toc": false,
"layout": false,
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"helpers": [
"./docs/helpers.js"
],
"lint": {
"reflinks": true
},
"reflinks": [
"inquirer",
"prompt-skeleton"
]
}
}