-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "rxamqp",
"version": "0.3.6",
"description": "Library for easy amqplib configuration and usage",
"main": "./src/index.js",
"scripts": {
"start": "nodemon ./src/index.js",
"start:test": "nodemon ./src/test.js",
"lint": "eslint src",
"test": "jest --coverage --collectCoverageFrom --forceExit spec",
"test:watch": "jest --watchAll --runInBand",
"playground": "nodemon ./src/test.js"
},
"author": {
"name": "Yaroslav Grishajev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ygrishajev/rxamqp"
},
"license": "MIT",
"keywords": [
"rabbitmq",
"amqp",
"amqplib",
"router",
"client",
"reactive",
"rxjs",
"rx"
],
"dependencies": {
"amqplib": "^0.5.2",
"chalk": "^2.3.1",
"lodash.flow": "^3.5.0",
"rxjs": "^6.2.1",
"rxjs-compat": "^6.2.1",
"util.promisify": "^1.0.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/travis-cli": "^7.0.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.17.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"nodemon": "^1.14.12",
"proxyquire": "^2.1.0",
"uuid-validate": "0.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}