Some checks failed
Test Suite / unit-tests (3.11) (push) Has been cancelled
Test Suite / unit-tests (3.12) (push) Has been cancelled
Test Suite / code-quality (push) Has been cancelled
Test Suite / security-scan (push) Has been cancelled
Test Suite / integration-tests (push) Has been cancelled
Test Suite / e2e-tests (push) Has been cancelled
Test Suite / performance-tests (push) Has been cancelled
Test Suite / test-summary (push) Has been cancelled
- Add comprehensive image test document with various image types - Update project structure with development artifacts - Prepare foundation for image support enhancement phase - Include test files for validating image editing workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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"
|
|
]
|
|
}
|
|
}
|