-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "rabbitmq-tools",
"version": "0.1.44",
"description": "Library for rabbitmq communication",
"main": "./dist/index.js",
"scripts": {
"babel-node": "babel-node",
"start": "nodemon --exec npm run babel-node -- ./src/index.js",
"build": "babel src -d dist",
"lint": "eslint src",
"prepublishOnly": "rm -rf dist && npm run build",
"commit": "git-cz",
"commitmsg": "conventional-changelog-lint -e"
},
"author": {
"name": "Trysimply Developers Team",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/trysimply/rabbitmq-tools"
},
"license": "Apache License 2.0",
"keywords": [
"rabbitmq",
"amqp",
"amqplib",
"router",
"client",
"jsonschema",
"validation",
"reactive"
],
"dependencies": {
"amqplib": "^0.5.1",
"babel-polyfill": "^6.26.0",
"chalk": "^2.3.1",
"jsonschema": "^1.1.1",
"lodash.curry": "^4.1.1",
"rxjs": "^5.5.6",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog-lint": "^0.1.3",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"nodemon": "^1.14.12"
},
"pre-commit": [
"lint"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-lint"
}
}
}