forked from onebeyond/rascal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
63
64
65
66
67
68
{
"name": "rascal",
"version": "12.0.2",
"description": "A config driven wrapper for amqplib supporting multi-host connections, automatic error recovery, redelivery flood protection, transparent encryption / decryption, channel pooling and publication timeouts",
"main": "index.js",
"dependencies": {
"async": "^3.2.0",
"debug": "^4.1.1",
"deep-freeze": "0.0.1",
"forward-emitter": "^0.1.1",
"generic-pool": "^3.7.1",
"lodash": "^4.17.21",
"lru-cache": "^5.1.1",
"safe-json-parse": "^4.0.0",
"stashback": "^1.1.2",
"superagent": "^5.2.2",
"uuid": "^8.0.0",
"xregexp": "^4.3.0"
},
"devDependencies": {
"amqplib": "^0.6.0",
"chalk": "^4.0.0",
"chance": "^1.1.4",
"eslint": "^6.8.0",
"eslint-config-imperative": "^3.0.0",
"eslint-plugin-imperative": "^3.0.0",
"husky": "^4.2.5",
"nyc": "^15.1.0",
"random-readable": "^1.0.1",
"zunit": "^3.0.0"
},
"peerDependencies": {
"amqplib": ">=0.5.5"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "node test",
"lint": "eslint .",
"coverage": "nyc --report html --reporter lcov --reporter text-summary node test",
"docker": "docker run -d --name rascal-rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management"
},
"keywords": [
"amqplib",
"amqp",
"rabbitmq",
"callback",
"promise",
"await",
"async"
],
"repository": {
"type": "git",
"url": "https://github.com/guidesmiths/rascal.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/rascal/issues"
},
"homepage": "https://guidesmiths.github.io/rascal/",
"author": "Stephen Cresswell",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}