-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 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
50
51
52
53
54
55
56
57
58
{
"name": "nextgen-events",
"version": "1.5.3",
"description": "The next generation of events handling for javascript! New: abstract away the network!",
"main": "lib/NextGenEvents.js",
"engines": {
"node": ">=6.0.0"
},
"directories": {
"test": "test",
"bench": "bench"
},
"dependencies": {},
"devDependencies": {
"browserify": "^17.0.0",
"uglify-js-es6": "^2.8.9",
"ws": "^7.4.6"
},
"scripts": {
"test": "tea-time -R dot"
},
"repository": {
"type": "git",
"url": "https://github.com/cronvel/nextgen-events.git"
},
"keywords": [
"events",
"async",
"emit",
"listener",
"context",
"series",
"serialize",
"namespace",
"proxy",
"network"
],
"author": "Cédric Ronvel",
"license": "MIT",
"bugs": {
"url": "https://github.com/cronvel/nextgen-events/issues"
},
"config": {
"tea-time": {
"coverDir": [
"lib"
]
}
},
"copyright": {
"title": "Next-Gen Events",
"years": [
2015,
2021
],
"owner": "Cédric Ronvel"
}
}