-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.13 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
{
"name": "imicros-flow",
"version": "0.4.0",
"author": "Andreas Leinen <andreas.leinen@imicros.de> (www.imicros.de)",
"license": "MIT",
"description": "Process engine of imicros framework",
"main": "index.js",
"engines": {
"node": ">=14.15"
},
"scripts": {
"test": "jest --coverage --no-cache",
"test-local": "jest --coverage --no-cache --silent --config=local.js --detectOpenHandles",
"test-main": "jest test/main.spec.js --no-cache --silent --config=local.js",
"test-process": "jest test/main.spec.js test/main.*.spec.js test/stream.spec.js --no-cache --silent --config=local.js",
"test-A": "jest test/main.A.spec.js --no-cache --config=local.js",
"test-B": "jest test/main.B.spec.js --no-cache --config=local.js",
"test-C": "jest test/main.C.spec.js --no-cache --config=local.js",
"test-D": "jest test/main.D.spec.js --no-cache --config=local.js",
"test-E": "jest test/main.E.spec.js --no-cache --config=local.js",
"test-F": "jest test/main.F.spec.js --no-cache --config=local.js",
"test-G": "jest test/main.G.spec.js --no-cache --config=local.js",
"test-cassandra": "jest test/cassandra.spec.js --no-cache --config=local.js",
"test-stream": "jest test/stream.spec.js --no-cache --config=local.js --detectOpenHandles"
},
"jest": {
"collectCoverageFrom": [
"lib/*.js",
"lib/util/*.js",
"!node_modules/",
"!/dev/",
"!test/helper/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dev/"
],
"rootDir": ".",
"roots": [
"./test"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/al66/imicros-flow.git"
},
"keywords": [
"moleculer",
"process",
"engine"
],
"devDependencies": {
"benchmark": "^2.1.4",
"imicros-acl": "^0.0.13",
"jest": "^29.0.2",
"moleculer": "^0.14.23",
"nats": "^2.7.1"
},
"dependencies": {
"cassandra-driver": "^4.6.4",
"cron-parser": "^4.6.0",
"fast-xml-parser": "^4.0.9",
"imicros-flow-control": "^0.0.12",
"imicros-flow-map": "0.0.5",
"rfdc": "^1.3.0",
"uuid": "^8.3.2",
"xstate": "^4.33.5"
}
}