-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "mediatr2",
"version": "1.4.18",
"description": "Mediator to help CQRS implementation.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "tsc && mocha --extensions js --watch --watch-files src './build/test/*.js'",
"deploy":"tsc && npm publish",
"coverage": "npm run build && nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maqtulio/mediatR.git"
},
"keywords": [
"mediator",
"cqrs",
"handler"
],
"author": "Tulio Santigo Duarte",
"license": "ISC",
"bugs": {
"url": "https://github.com/maqtulio/mediatR/issues"
},
"homepage": "https://github.com/maqtulio/mediatR#readme",
"dependencies": {
"glob": "^7.1.6",
"joi": "^17.4.0",
"reflect-metadata": "^0.1.13",
"typescript": "^4.1.5"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/expect": "^24.3.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.1",
"ava": "^3.15.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1"
}
}