-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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": "@truesparrow/queue",
"version": "2.0.0",
"description": "Queue helps publish critical events using EventEmitter and RabbitMQ.",
"main": "index.js",
"scripts": {
"start": "index.js",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/TrueSparrowSystems/queue.git"
},
"keywords": [
"True Sparrow Queue",
"Event Emitter",
"RabbitMQ",
"PubSub"
],
"author": "True Sparrow",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrueSparrowSystems/queue/issues"
},
"homepage": "https://github.com/TrueSparrowSystems/queue#readme",
"dependencies": {
"@truesparrow/base": "2.0.0",
"amqplib": "0.8.0",
"uuid": "8.3.2"
},
"devDependencies": {
"chai": "4.3.0",
"ink-docstrap": "1.3.2",
"jsdoc-route-plugin": "0.1.0",
"lint-staged": "9.4.2",
"mocha": "8.4.0",
"pre-commit": "1.2.2",
"prettier": "1.14.3"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}