Skip to content

Commit 48d6c8b

Browse files
committed
Added Package.json
1 parent 23bbffc commit 48d6c8b

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

package.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "eventengine",
3+
"version": "1.0.0",
4+
"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.",
5+
"main": "dist/eventengine.min.js",
6+
"scripts": {
7+
"test": "jest",
8+
"build": "rollup -c",
9+
"lint": "eslint .",
10+
"prepublishOnly": "npm run lint && npm run test && npm run build"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/jamesgober/EventEngine.git"
15+
},
16+
"keywords": [
17+
"javascript",
18+
"javascript-library",
19+
"dom-events",
20+
"events",
21+
"lightweight",
22+
"debugging",
23+
"namespacing",
24+
"observables",
25+
"event-handling",
26+
"custom-events",
27+
"performance"
28+
],
29+
"author": "James Gober <[email protected]> (https://jamesgober.com)",
30+
"license": "MIT",
31+
"bugs": {
32+
"url": "https://github.com/jamesgober/EventEngine/issues"
33+
},
34+
"homepage": "https://github.com/jamesgober/EventEngine#readme",
35+
"devDependencies": {
36+
"@rollup/plugin-terser": "^0.4.4",
37+
"eslint": "^8.0.0",
38+
"jest": "^29.0.0",
39+
"rollup": "^3.20.0"
40+
}
41+
}

0 commit comments

Comments
 (0)