forked from metarhia/metacom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 924 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
{
"name": "metacom",
"version": "0.0.0",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Communication protocol for Metarhia stack with rpc, events, binary streams, memory and db access",
"license": "MIT",
"keywords": [
"metacom",
"metarhia",
"impress",
"server",
"client",
"socket",
"rpc",
"events",
"sync",
"globalstorage",
"protocol",
"stream"
],
"repository": {
"type": "git",
"url": "https://github.com/metarhia/metacom"
},
"main": "./metacom.js",
"readmeFilename": "README.md",
"scripts": {
"test": "npm run lint && node ./test/unit.js && node ./test/integration.js ",
"lint": "eslint ."
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"metarhia-common": "^0.0.26",
"websocket": "^1.0.26"
},
"devDependencies": {
"eslint": "^4.19.1",
"metatests": "^0.1.9"
}
}