-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.15 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
{
"name": "dot-rest",
"version": "0.4.0",
"description": "a minimalist toolkit for building scalable, fault tolerant and eventually-consistent microservices",
"keywords": [
"microservice",
"microservices",
"soa",
"rpc",
"service registry",
"service discovery",
"rest",
"api"
],
"main": "index.js",
"scripts": {
"coverage": "./node_modules/.bin/jest --coverage",
"test": "./node_modules/.bin/jest"
},
"author": {
"name": "Umut Aydin"
},
"engines": {
"node": ">=v6.14.4"
},
"bugs": {
"url": "https://github.com/dot-microservices/dot-rest/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/dot-microservices/dot-rest.git"
},
"license": "MIT",
"devDependencies": {
"clerq": "^0.5.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1",
"redis-mock": "^0.49.0"
},
"dependencies": {
"axios": "^0.21.1",
"body": "^5.1.0",
"find-my-way": "^3.0.0",
"is_js": "^0.9.0",
"pino": "^6.2.1",
"portfinder": "^1.0.26"
},
"jest": {
"testEnvironment": "node"
}
}