-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "beems",
"version": "0.7.1",
"description": "a bee-queue based minimalist toolkit for building fast, decentralized, fault tolerant and scalable microservices",
"keywords": [
"bee",
"queue",
"soa",
"rpc",
"concurrency",
"fault-tolerant",
"scalability",
"microservices"
],
"main": "index.js",
"typings": "index.d.ts",
"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/umuplus/beems/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/umuplus/beems.git"
},
"license": "MIT",
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2"
},
"dependencies": {
"bee-queue": "^1.2.3",
"is_js": "^0.9.0",
"pino": "^6.5.1"
},
"jest": {
"testEnvironment": "node"
}
}