-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "@payk/nestjs-zeebe",
"version": "1.2.2",
"description": "Zeebe microservice module and client for nestjs",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/pay-k/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",
"dependencies": {},
"devDependencies": {
"@nestjs/common": "^6.11.5",
"@nestjs/core": "^6.11.5",
"@nestjs/microservices": "^6.11.5",
"@nestjs/platform-express": "^6.11.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3",
"typescript": "^3.7.5",
"zeebe-node": "^0.22.1",
"@nestjs/testing": "^6.11.5",
"@types/chai": "^4.2.8",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.3",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.4.1"
},
"peerDependencies": {
"@nestjs/common": "^6.11.5",
"@nestjs/core": "^6.11.5",
"@nestjs/microservices": "^6.11.5",
"@nestjs/platform-express": "^6.11.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"typescript": "^3.6.3",
"zeebe-node": "^0.22.1"
}
}