-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "postmaster-general-core",
"version": "1.0.2",
"description": "Core modules for the postmaster-general microservice library.",
"author": "Ben Whatley",
"repository": {
"type": "git",
"url": "git+https://github.com/darklordzw/postmaster-general-core.git"
},
"keywords": [
"microservices",
"message bus",
"postmaster-general"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/darklordzw/postmaster-general-core/issues"
},
"homepage": "https://github.com/darklordzw/postmaster-general-core#readme",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"index.js",
"defaults.json",
"lib/"
],
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint --fix . || exit 0"
},
"dependencies": {
"bluebird": "^3.5.3",
"lodash": "^4.17.11",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"dirty-chai": "^2.0.1",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.3",
"prettier": "^2.2.1"
}
}