-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "remote-event-emitter",
"description": "Deliver events remotely over Unix sockets or TCP connections using standard EventEmitter",
"version": "1.2.0",
"author": "Robert Rossmann <[email protected]>",
"bugs": "https://github.com/Dreamscapes/remote-event-emitter/issues",
"contributors": [],
"dependencies": {
"binary-split": "^1.0.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@commitlint/cli": "^8.0.0",
"@strv/commitlint-config": "^1.0.0",
"@strv/eslint-config-mocha": "^2.0.0",
"@strv/eslint-config-node": "^2.0.0",
"@types/node": "^10.12.12",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"eslint": "^6.0.0",
"mocha": "^6.0.0",
"mocha-reporter-remote": "^1.6.2",
"nyc": "^14.1.1",
"remark-cli": "^7.0.0",
"remark-preset-lint-consistent": "^2.0.2",
"remark-preset-lint-markdown-style-guide": "^2.1.2",
"remark-preset-lint-recommended": "^3.0.2",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.0"
},
"engines": {
"node": "^10.0.0",
"npm": "^6.0.0"
},
"homepage": "https://github.com/Dreamscapes/remote-event-emitter",
"keywords": [
"emitter",
"eventemitter",
"events",
"node",
"remote",
"socket",
"tcp"
],
"license": "BSD-3-Clause",
"main": "src",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/Dreamscapes/remote-event-emitter.git"
}
}