-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.22 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
{
"name": "@funnode/rabbitmq",
"version": "2.1.1",
"description": "A rabbitmq wrapper used by funnode repositories",
"main": "index.js",
"scripts": {
"test:dev": "./node_modules/.bin/mocha test/*.js --watch --timeout 2000 --exit",
"test": "./node_modules/.bin/mocha test/*.js --timeout 2000 --exit",
"coverage": "./node_modules/.bin/nyc --reporter=lcov --reporter=text-lcov --report-dir=coverage --all npm run test",
"lint": "eslint index.js test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FunNode/npm-rabbitmq.git"
},
"author": {
"name": "Ravi Patel",
"email": "[email protected]",
"url": "https://github.com/RaviPatel"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"contributors": [
{
"name": "Malik Kamran Abid",
"url": "https://github.com/orgs/FunNode/people/malikkamranabid"
}
],
"license": "ISC",
"dependencies": {
"amqplib": "^0.6.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.7.2",
"eslint-plugin-node": "^10.0.0",
"mocha": "^8.2.1",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
}
}