-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.06 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
42
43
44
45
46
47
48
49
{
"name": "@dimkl/events",
"version": "3.0.0",
"description": "Minimal events register library",
"keywords": [
"event",
"decorator",
"dispatch",
"emit",
"on",
"EventTarget"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.test.js",
"!dist/**/*.test.d.ts"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"preversion": "npm test",
"test": "jest",
"setup:examples": "yalc publish && cd examples/ && yalc add @dimkl/events && npm i && cd ../ && yalc push"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.11",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0",
"yalc": "*"
},
"engines": {
"node": ">=18.17"
},
"repository": {
"type": "git",
"url": "https://github.com/dimkl/events.git"
},
"bugs": {
"url": "https://github.com/dimkl/events/issues"
}
}