-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
50
51
52
53
54
55
56
57
58
59
{
"name": "microsia",
"version": "0.0.7",
"main": "broker.js",
"scripts": {
"lint": "eslint ./lib --fix",
"test": "nyc mocha --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/consocia/microsia.git"
},
"keywords": [
"microservices",
"microservice",
"micro-services",
"micro-service",
"micro",
"transport",
"nats"
],
"author": "[email protected]",
"license": "ISC",
"description": "Blazing fast, minimalist and unopinionated microservices library for nodejs",
"bugs": {
"url": "https://github.com/consocia/microsia/issues"
},
"homepage": "https://github.com/consocia/microsia",
"dependencies": {
"eventemitter2": "^5.0.1",
"nats": "^1.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.6",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"react": "^16.9.0"
}
}