-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "super-event-emitter",
"description": "🔨 Lightweight and simple interpretation of popular event management",
"version": "5.0.3",
"license": "MIT",
"author": {
"name": "Piotr Kowalski",
"email": "[email protected]",
"url": "https://piecioshka.pl/"
},
"scripts": {
"build": "webpack",
"build:prod": "webpack --mode production --no-devtool",
"watch": "webpack -w",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"version": "npm run build:prod && auto-changelog -p && git add CHANGELOG.md"
},
"auto-changelog": {
"commit-limit": false,
"template": ".github/CHANGELOG_TEMPLATE.hbs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/piecioshka/super-event-emitter.git"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"auto-changelog": "^2.5.0",
"jest": "^29.7.0",
"string-replace-loader": "^3.1.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"files": [
"dist",
"types",
"index.js",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md",
"!**/*.spec.*"
],
"keywords": [
"super",
"event",
"emitter",
"observer",
"events",
"mixin",
"on",
"addEventListener",
"addListener",
"bind",
"off",
"removeEventListener",
"removeListener",
"unbind",
"emit",
"dispatchEventListener",
"dispatchListener",
"trigger",
"simple"
],
"main": "./index.js",
"types": "./types/index.d.ts"
}