-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "node-dot",
"version": "0.9.12",
"description": "a minimalist toolkit for building fast, decentralized, scalable and fault tolerant microservices",
"keywords": [
"microservice",
"microservices",
"soa",
"rpc",
"zero configuration",
"zero-conf",
"auto discovery"
],
"main": "index.js",
"scripts": {
"coverage": "./node_modules/.bin/jest --coverage",
"test": "./node_modules/.bin/jest"
},
"author": {
"name": "Umut Aydin"
},
"engines": {
"node": ">=v6.14.4"
},
"homepage": "https://dot.js.org/",
"bugs": {
"url": "https://github.com/dot-microservices/dot/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/dot-microservices/dot.git"
},
"license": "MIT",
"dependencies": {
"axon": "^2.0.3",
"ip": "^1.1.5",
"is_js": "^0.9.0",
"node-discover": "^1.1.3",
"portfinder": "^1.0.26"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1"
},
"jest": {
"testEnvironment": "node"
}
}