-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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": "@cesarbr/knot-cloud-sdk-js-amqp",
"version": "4.0.0",
"description": "KNoT Cloud AMPQ SDK for NodeJS ",
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-cloud-sdk-js-amqp"
},
"main": "./dist/main.js",
"module": "./dist/module.mjs",
"author": "CESARBR",
"license": "BSD-3-Clause",
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^26.0.1",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"pre-commit": "^1.2.2",
"prettier": "2.0.5",
"rollup": "^2.6.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@cesarbr/knot-cloud-sdk-js-authenticator": "^2.2.0",
"amqp-connection-manager": "^3.2.0",
"amqplib": "^0.8.0",
"uniqid": "^5.2.0"
}
}