smartevent/package.json

55 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2017-04-29 19:23:26 +00:00
{
2023-07-10 00:48:58 +00:00
"name": "@push.rocks/smartevent",
2020-02-21 10:05:52 +00:00
"version": "2.0.5",
"private": false,
2024-04-14 15:33:00 +00:00
"description": "A library to handle events in smart ways, integrating features to work with promises.",
2017-04-29 19:23:26 +00:00
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)"
2017-04-29 19:23:26 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:12:54 +00:00
"url": "https://code.foss.global/push.rocks/smartevent.git"
2017-04-29 19:23:26 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartevent/issues"
},
2024-05-29 12:12:54 +00:00
"homepage": "https://code.foss.global/push.rocks/smartevent",
2017-04-29 19:23:26 +00:00
"dependencies": {
2020-02-21 10:05:52 +00:00
"@pushrocks/smartpromise": "^3.0.6",
2023-07-10 00:48:58 +00:00
"@pushrocks/smartrx": "^2.0.5",
"events": "^3.1.0"
2017-04-29 19:23:26 +00:00
},
"devDependencies": {
2020-02-21 09:53:44 +00:00
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.28",
"@pushrocks/tapbundle": "^3.2.0",
"@types/node": "^13.7.4",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_web/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 15:33:00 +00:00
],
"keywords": [
"event handling",
"smart event management",
"typescript",
"promises integration",
"asynchronous programming",
"event-driven development"
2020-02-21 09:53:44 +00:00
]
2023-07-10 00:48:58 +00:00
}