UNPKG

@valeera/eventdispatcher

Version:
84 lines (83 loc) 2.82 kB
{ "name": "@valeera/eventdispatcher", "version": "2.2.4", "description": "Event dispatcher fit for most framework.", "main": "build/EventDispatcher.js", "repository": "ValeeraJS/EventDispatcher", "jsnext:main": "build/EventDispatcher.module.js", "module": "build/EventDispatcher.module.js", "types": "build/index.d.ts", "files": [ "build", "LICENSE", "package.json", "README.md", "src" ], "directories": { "docs": "docs", "examples": "examples", "src": "src" }, "scripts": { "build": "rollup -c scripts/rollup.config.js", "build-legacy": "rollup -c scripts/rollup.config.legacy.js", "build-closure": "google-closure-compiler --compilation_level=ADVANCED_OPTIMIZATIONS --warning_level=VERBOSE --jscomp_off=globalThis --jscomp_off=checkTypes --externs scripts/externs.js --language_in=ECMASCRIPT_NEXT --language_out=ECMASCRIPT_NEXT --js build/EventDispatcher.js --js_output_file build/EventDispatcher.min.js", "build-closure-legacy": "google-closure-compiler --compilation_level=ADVANCED_OPTIMIZATIONS --warning_level=VERBOSE --jscomp_off=globalThis --jscomp_off=checkTypes --externs scripts/externs.js --language_in=ECMASCRIPT5 --language_out=ECMASCRIPT5 --js build/EventDispatcher.legacy.js --js_output_file build/EventDispatcher.legacy.min.js", "build-all": "npm run build && npm run build-legacy && npm run build-closure && npm run build-closure-legacy", "tsc": "tsc", "start": "npm run dev", "lint": "tsc && eslint src --ext js --ext ts", "test": "nyc --reporter=html --reporter=text mocha --require esm", "travis": "npm run lint && npm test" }, "keywords": [ "EventDispatcher", "utils", "module", "valeera", "tools", "framework" ], "author": "hypnosnova", "license": "MIT", "devDependencies": { "@typescript-eslint/eslint-plugin": "5.12.0", "@typescript-eslint/parser": "5.12.0", "chai": "4.3.3", "concurrently": "6.0.0", "eslint": "8.6.0", "eslint-config-valeera": "0.1.1", "eslint-plugin-html": "6.2.0", "eslint-plugin-prettier": "4.0.0", "eslint-plugin-tslint": "3.1.0", "esm": "3.2.25", "google-closure-compiler": "20220202.0.0", "http-server": "14.1.0", "mocha": "9.2.0", "nyc": "15.1.0", "prettier": "2.5.1", "rollup": "2.67.2", "rollup-plugin-json": "4.0.0", "rollup-plugin-typescript2": "0.31.2", "tslib": "^2.3.1", "typescript": "4.5.5" }, "jspm": { "files": [ "package.json", "LICENSE", "README.md", "build/EventDispatcher.js", "build/EventDispatcher.min.js", "build/EventDispatcher.module.js", "build/EventDispatcher.legacy.js", "build/EventDispatcher.legacy.min.js", "build/EventDispatcher.legacy.module.js" ], "directories": {} }, "publishConfig": { "access": "public" } }