package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@yume-chan/event",
  3. "version": "0.0.17",
  4. "description": "Event/EventEmitter",
  5. "keywords": [
  6. "event",
  7. "eventemitter",
  8. "typescript"
  9. ],
  10. "license": "MIT",
  11. "author": {
  12. "name": "Simon Chan",
  13. "email": "cnsimonchan@live.com",
  14. "url": "https://chensi.moe/blog"
  15. },
  16. "homepage": "https://github.com/yume-chan/ya-webadb/tree/main/libraries/event#readme",
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  20. "directory": "libraries/event"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/yume-chan/ya-webadb/issues"
  24. },
  25. "type": "module",
  26. "main": "esm/index.js",
  27. "types": "esm/index.d.ts",
  28. "scripts": {
  29. "build": "tsc -b tsconfig.build.json",
  30. "build:watch": "tsc -b tsconfig.build.json",
  31. "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
  32. "prepublishOnly": "npm run build"
  33. },
  34. "dependencies": {
  35. "@yume-chan/async": "^2.2.0",
  36. "tslib": "^2.4.1"
  37. },
  38. "devDependencies": {
  39. "@jest/globals": "^29.3.1",
  40. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  41. "cross-env": "^7.0.3",
  42. "jest": "^29.3.1",
  43. "ts-jest": "^29.0.3",
  44. "typescript": "^4.8.4"
  45. }
  46. }