synthetic-event
Version:
A collection of base classes for custom events and event targets.
83 lines (82 loc) • 1.99 kB
JSON
{
"name": "synthetic-event",
"version": "1.1.2",
"description": "A collection of base classes for custom events and event targets.",
"homepage": "https://github.com/vanruesc/synthetic-event",
"main": "build/synthetic-event.js",
"module": "build/synthetic-event.esm.js",
"types": "build/types/index.d.ts",
"exports": {
".": "./build/synthetic-event.esm.js"
},
"type": "module",
"sideEffects": false,
"license": "Zlib",
"keywords": [
"event",
"target",
"emitter",
"listener",
"dispatcher",
"synthetic",
"custom"
],
"author": {
"name": "Raoul van Rüschen",
"email": "vanruesc@outlook.de"
},
"repository": {
"type": "git",
"url": "https://github.com/vanruesc/synthetic-event.git"
},
"bugs": {
"url": "https://github.com/vanruesc/synthetic-event/issues"
},
"files": [
"build"
],
"scripts": {
"ava": "ava",
"build": "cross-env NODE_ENV=production rollup -c",
"build-debug": "rollup -c",
"doc": "rimraf docs && typedoc",
"dev": "concurrently -k -n rollup,eslint \"rollup -c -w\" \"esw -w --ext .ts src\"",
"lint": "eslint src",
"prepack": "npm test && npm run doc",
"pretest": "npm run lint && rimraf build && npm run build",
"test": "ava"
},
"ava": {
"failFast": true,
"files": [
"test/**/*.js"
]
},
"eslintConfig": {
"root": true,
"extends": "aether/typescript",
"parserOptions": {
"project": [
"tsconfig.json"
]
}
},
"devDependencies": {
"@rollup/plugin-node-resolve": "9.x.x",
"@rollup/plugin-typescript": "5.x.x",
"@typescript-eslint/eslint-plugin": "3.x.x",
"@typescript-eslint/parser": "3.x.x",
"ava": "3.x.x",
"concurrently": "5.x.x",
"cross-env": "7.x.x",
"eslint": "7.x.x",
"eslint-config-aether": "1.x.x",
"eslint-watch": "7.x.x",
"rimraf": "3.x.x",
"rollup": "2.x.x",
"rollup-plugin-terser": "7.x.x",
"tslib": "2.x.x",
"typedoc": "0.x.x",
"typescript": "3.x.x"
}
}