-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.47 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
{
"name": "sugarmq",
"version": "1.0.0",
"description": "A sweet syntax wrapper around amqplib",
"author": "Ernest Okot",
"license": "MIT",
"main": "lib/topic/index.js",
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"compile": "tsc",
"commit": "git add . && git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"release": "semantic-release",
"test": "jest"
},
"dependencies": {
"amqplib": "^0.5.2",
"debug": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@semantic-release/git": "^4.0.2",
"@types/amqplib": "^0.5.7",
"@types/debug": "^0.0.30",
"@types/jest": "^22.2.3",
"commitizen": "^2.9.6",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"nsp": "^3.2.1",
"semantic-release": "^15.1.7",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"directories": {
"example": "examples",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freelyformd/mq.git"
},
"keywords": [
"rabbitmq",
"nodejs",
"amqplib"
],
"bugs": {
"url": "https://github.com/freelyformd/mq/issues"
},
"homepage": "https://github.com/freelyformd/mq#readme"
}