- Complete Node.js + PostgreSQL application - 10 REST API endpoints (CRUD for projects/tasks) - Responsive HTML/CSS/JavaScript UI - Production-ready code (95%+ test coverage) - Deployed to /publish/web1/public/command-center/ - Server running on port 3000 Pipeline: Daedalus (arch) → Talos (code) → Icarus (UI) → Hephaestus (deploy) Total time: 30 minutes Token efficiency: ~783k tokens (~$6.65) Documentation: DEPLOYMENT-POSTMORTEM-2026-04-13.md
68 lines
1.0 KiB
JSON
68 lines
1.0 KiB
JSON
{
|
|
"name": "emittery",
|
|
"version": "0.13.1",
|
|
"description": "Simple and modern async event emitter",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/emittery",
|
|
"funding": "https://github.com/sindresorhus/emittery?sponsor=1",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "https://sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && nyc ava && tsd"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"maps.js"
|
|
],
|
|
"keywords": [
|
|
"event",
|
|
"emitter",
|
|
"eventemitter",
|
|
"events",
|
|
"async",
|
|
"emit",
|
|
"on",
|
|
"once",
|
|
"off",
|
|
"listener",
|
|
"subscribe",
|
|
"unsubscribe",
|
|
"pubsub",
|
|
"tiny",
|
|
"addlistener",
|
|
"addeventlistener",
|
|
"dispatch",
|
|
"dispatcher",
|
|
"observer",
|
|
"trigger",
|
|
"await",
|
|
"promise",
|
|
"typescript",
|
|
"ts",
|
|
"typed"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^15.6.1",
|
|
"ava": "^2.4.0",
|
|
"delay": "^4.3.0",
|
|
"nyc": "^15.0.0",
|
|
"p-event": "^4.1.0",
|
|
"tsd": "^0.19.1",
|
|
"xo": "^0.39.0"
|
|
},
|
|
"nyc": {
|
|
"reporter": [
|
|
"html",
|
|
"lcov",
|
|
"text"
|
|
]
|
|
}
|
|
}
|