-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.12 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.12 KB
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
{
"name": "@ostdotcom/notification",
"version": "1.0.8",
"description": "OST Notification helps publish critical events using EventEmitter and RabbmitMQ.",
"main": "index.js",
"scripts": {
"start": "index.js",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/ostdotcom/notification.git"
},
"keywords": [
"OpenST",
"OST",
"Simple Token",
"Event Emitter",
"RabbmitMQ",
"PubSub"
],
"author": "OST.com Inc.",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/ostdotcom/notification/issues"
},
"homepage": "https://github.com/ostdotcom/notification#readme",
"dependencies": {
"@ostdotcom/base": "^2.0.0",
"amqplib": "0.5.2",
"uuid": "3.3.2"
},
"devDependencies": {
"chai": "4.2.0",
"ink-docstrap": "1.3.2",
"jsdoc-route-plugin": "0.1.0",
"lint-staged": "9.4.2",
"mocha": "5.2.0",
"pre-commit": "1.2.2",
"prettier": "1.14.3"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}