-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 941 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "dead-simple",
"version": "1.1.0",
"description": "Dead simple PubSub and EventEmitter in JavaScript",
"main": "./index.js",
"scripts": {
"prepublish": "yarn test",
"test": "jest"
},
"author": "Robin Pokorny <[email protected]> (http://robinpokorny.com)",
"license": "MIT",
"devDependencies": {
"husky": ">=1",
"jest": "26.6.3",
"lint-staged": ">=8",
"prettier": "2.2.1"
},
"keywords": [
"EventEmitter",
"EventEmitter2",
"EventEmitter3",
"Events",
"addEventListener",
"addListener",
"emit",
"emits",
"emitter",
"event",
"pubsub",
"publish",
"subscribe"
],
"repository": {
"type": "git",
"url": "https://github.com/robinpokorny/dead-simple"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}