-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "@elastic.io/amqp-rpc",
"description": "RPC over RabbitMQ for Node.js",
"version": "2.1.0",
"homepage": "http://elastic.io",
"author": "elastic.io GmbH <[email protected]>",
"main": "src/index.js",
"license": "ISC",
"engines": {
"node": ">=8.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elasticio/amqp-rpc.git"
},
"bugs": {
"url": "https://github.com/elasticio/amqp-rpc/issues"
},
"scripts": {
"docs": "rimraf ./docs && jsdox --output ./docs ./src",
"lint": "eslint --ignore-path .gitignore .",
"prepublish": "npm run lint && npm run test",
"test": "node_modules/.bin/mocha --require ./test/bootstrap.js --timeout 10000 --recursive --reporter nyan ./test/**/*.test.js",
"cover": "istanbul cover node_modules/.bin/_mocha -- --require ./test/bootstrap.js --timeout 10000 --recursive --reporter nyan ./test/**/*.test.js"
},
"devDependencies": {
"amqplib": "0.5.1",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"eslint": "4.6.1",
"eslint-config-node": "1.6.0",
"istanbul": "0.4.5",
"jsdox": "0.4.10",
"mocha": "3.5.3",
"rimraf": "2.6.2",
"sinon": "4.1.2",
"sinon-chai": "2.14.0"
}
}