forked from pay-k/nestjs-zeebe
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "nestjs-zeebe",
"version": "8.1.1",
"description": "Zeebe microservice module and client for nestjs",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/danshapir/nestjs-zeebe.git",
"type": "git"
},
"scripts": {
"test": "mocha --opts .mocharc",
"test-juint": "mocha --opts .mocharc --reporter mocha-junit-reporter",
"prebuild": "rimraf dist",
"build": "tsc",
"publish-package": "npm run-script build && npm publish"
},
"keywords": [
"nestjs",
"zeebe"
],
"author": "Dan Shapir",
"license": "ISC",
"devDependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/microservices": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^7.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^10.0.0",
"typescript": "^4.1.2",
"zeebe-node": "^8.1.0"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0",
"@nestjs/microservices": "^8.0.0 || ^9.0.0",
"@nestjs/platform-express": "^8.0.0 || ^9.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0",
"typescript": "^4.1.2",
"zeebe-node": "^8.1.0"
}
}