-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 851 Bytes
/
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
{
"name": "@dever23b/event-handler",
"version": "1.0.4",
"description": "TypeScript event handler class",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npx tsc",
"test": "jest",
"pre-publish": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dever23b/event-handler.git"
},
"author": "Tyler Devereaux",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dever23b/event-handler/issues"
},
"homepage": "https://github.com/dever23b/event-handler#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}