forked from davidnussio/moleculer-cqrs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 2.59 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "moleculer-cqrs",
"version": "0.1.0-beta.5",
"description": "CQRS, Event Sourcing for Moleculer",
"author": {
"name": "David Nussio",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/davidnussio/moleculer-cqrs.git"
},
"main": "./index.js",
"bin": {
"cqrs-generator": "./bin/cqrs-generator.js"
},
"scripts": {
"ci": "jest --watch",
"test": "jest --coverage --no-cache",
"lint": "eslint --ext=.js src test",
"lint:fix": "eslint --fix --ext=.js src test",
"format": "prettier src/**/*.js test/**/*.js",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:ts": "tsd",
"plop": "plop --plopfile src/plop-generator.js"
},
"keywords": [
"microservices",
"moleculer",
"cqrs",
"event sourcing",
"ddd"
],
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.13.11 || ~0.14",
"moleculer-db": "^0.8.2"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"coveralls": "^3.0.8",
"date-fns": "^2.8.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"lint-staged": "^9.4.3",
"moleculer": "^0.13.11",
"post-merge-install": "^0.3.0",
"prettier": "^1.19.1",
"tsd": "^0.11.0"
},
"dependencies": {
"@moleculer/vorpal": "^1.11.5",
"consolidate": "^0.15.1",
"fastest-validator": "^0.6.19",
"glob": "^7.1.6",
"inquirer": "^7.0.0",
"node-plop": "^0.23.0",
"plop": "^2.5.3",
"resolve-command": "^0.20.29",
"resolve-es": "^0.20.29",
"resolve-storage-lite": "^0.20.29",
"uuid": "^3.3.3"
},
"engines": {
"node": ">= 8.x.x"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/aggregate/"
]
},
"types": "./index.d.ts",
"tsd": {
"directory": "test/typescript/tsd"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true
},
"lint-staged": {
"*.{json,css,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-merge": "post-merge-install",
"post-rebase": "post-merge-install"
}
}
}