-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.38 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
60
61
62
63
64
65
{
"name": "openservice",
"version": "0.0.5",
"description": "Flexible easy to use microservice framework on streams",
"main": "index.js",
"author": "david <[email protected]>",
"license": "MIT",
"bin": {
"openservice": "./bin/openservice.js"
},
"scripts": {
"lint": "prettier ./libs/**/*.js --write && eslint --fix ./libs/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"libs/**/*.js": [
"eslint --ext .js",
"prettier --write",
"git add"
]
},
"bugs": {
"url": "https://github.com/daywiss/openservice/issues"
},
"homepage": {
"url": "https://github.com/daywiss/openservice"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daywiss/openservice.git"
},
"keywords": [
"services",
"microservices",
"streams",
"servers",
"framework",
"events",
"cqrs"
],
"devDependencies": {
"eslint": "^7.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"tape": "^4.10.2"
},
"dependencies": {
"bluebird": "^3.5.5",
"dotenv": "^8.0.0",
"fastest-validator": "^0.6.17",
"highland": "^2.13.5",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"moment": "^2.24.0",
"node-nats-streaming": "^0.2.6",
"nuid": "^1.1.4",
"openenv": "^0.0.1",
"stack-utils": "^1.0.2"
}
}