-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "eventengine",
"version": "1.0.0",
"description": "EventEngine: A lightweight, extensible JavaScript library for managing DOM events with features like namespacing, throttling, debouncing, observables, debugging tools, and a focus on performance and flexibility.",
"main": "dist/eventengine.min.js",
"scripts": {
"test": "jest",
"build": "rollup -c",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/jamesgober/EventEngine.git"
},
"keywords": [
"javascript",
"javascript-library",
"dom-events",
"events",
"lightweight",
"debugging",
"namespacing",
"observables",
"event-handling",
"custom-events",
"performance"
],
"author": "James Gober <[email protected]> (https://jamesgober.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesgober/EventEngine/issues"
},
"homepage": "https://github.com/jamesgober/EventEngine#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"rollup": "^3.20.0"
}
}