-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·36 lines (36 loc) · 1.16 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
{
"name": "middleware_common_infrastructure",
"version": "1.0.5",
"main": "index.js",
"dependencies": {
"amqplib": "^0.5.2",
"bluebird": "^3.5.2",
"lodash": "^4.17.10",
"uniqid": "^5.0.3"
},
"scripts": {
"lint": "node ./node_modules/eslint/bin/eslint.js -c .eslintrc.js --ext .js --fix --ignore-path .eslintignore .",
"test": "node ./node_modules/mocha/bin/mocha -t 90000",
"cov": "nyc --reporter=html --reporter=text mocha -t 90000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "chronobank",
"license": "AGPL-3.0",
"bugs": {
"url": "https://gitlab.chronobank.io/chronobank/middleware-common-infrastructure/issues"
},
"homepage": "https://gitlab.chronobank.io/chronobank/middleware-common-infrastructure#readme",
"description": "Middleware common infrastructure",
"devDependencies": {
"babel-eslint": "^8.2.6",
"bzmq": "^0.1.0",
"chai": "^4.1.1",
"coveralls": "^3.0.2",
"dotenv": "^4.0.0",
"eslint": "^4.19.1",
"eslint-plugin-chronobank": "github:chronobank/eslint-plugin-chronobank",
"memwatch-next": "^0.3.0",
"mocha": "^3.5.0",
"nyc": "^13.0.1"
}
}