-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.55 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.55 KB
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
{
"name": "@moleculer/workflows",
"version": "0.2.1",
"description": "Advanced Workflow feature for Moleculer microservices framework",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./src/index.ts"
}
},
"files": [
"README.md",
"LICENSE",
"dist"
],
"scripts": {
"dev": "nodemon --inspect examples/index.ts",
"dev:noservice": "nodemon --inspect=9228 examples/index.ts simple noservice",
"ci:unit": "vitest --watch unit",
"ci:integration": "vitest --watch integration",
"test:unit": "vitest --run unit",
"test:integration": "vitest --run integration --coverage",
"test:leak": "tsx --expose-gc examples/leak/index.ts",
"test": "vitest --run --coverage",
"bench": "node benchmark/index.js",
"bench:watch": "nodemon benchmark/index.js",
"deps": "ncu -i && npm audit fix",
"ci-update-deps": "ncu -u",
"lint": "eslint --ext=.ts src examples test",
"check": "tsc --noEmit true",
"prebuild": "rimraf dist",
"build": "tsc -b tsconfig.cjs.json tsconfig.esm.json tsconfig.types.json",
"postbuild": "echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"prepack": "npm run build",
"release": "npm publish --access public && git push --tags",
"postrelease": "git push origin && git push origin -f --tags"
},
"keywords": [
"workflow",
"moleculer",
"microservice"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/workflows.git"
},
"author": "MoleculerJS",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.14.12 || ^0.15.0"
},
"dependencies": {
"cron-parser": "^5.5.0",
"ioredis": "^5.10.1",
"lodash": "^4.17.23"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"benchmarkify": "^4.0.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^4.0.0",
"kleur": "^4.1.5",
"moleculer": "^0.15.0",
"moleculer-repl": "^0.8.0",
"moleculer-web": "^0.11.0",
"msgpack5": "^6.0.2",
"nodemon": "^3.1.14",
"npm-check-updates": "^20.0.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
},
"engines": {
"node": ">= 22.x.x"
}
}