-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 3.17 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "enqueuer",
"version": "6.0.0",
"description": "Polyglot flow testing tool",
"main": "./js/enqueuer.js",
"typings": "./js/enqueuer.d.ts",
"types": "enqueuer.d.ts",
"directories": {
"lib": "js"
},
"homepage": "https://enqueuer.com",
"scripts": {
"start": "node js/index.js",
"prepublishOnly": "npm run all",
"test": "npm run codeCoverage && npm run examplesTest && npm run listsDescriptions",
"unitTest": "NODE_ENV=TEST node_modules/.bin/jest --silent",
"examplesTest": "mkdir output; NODE_TLS_REJECT_UNAUTHORIZED=0 node js/index.js -c conf/config-example.yml examples/task-navigation.yaml < misc/stdin && npm run validateOutput",
"validateOutput": "yval --from=json output/examples.json && yval --from=yaml output/examples.yml",
"codeCoverage": "NODE_ENV=TEST node_modules/.bin/jest --detectOpenHandles --coverage --silent",
"listsDescriptions": "nqr -t > /dev/null && nqr -p > /dev/null && nqr -t > /dev/null && nqr -e > /dev/null",
"format": "prettier . '!**/*.{html}' --write",
"updateHtml": "misc/mdToHtml.js",
"all": "npm run format ; npm run build && npm unlink -g && npm link && npm run test",
"build": "tsc",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"keywords": [
"testing",
"nqr",
"tool",
"microservice",
"multiprotocol",
"polyglot",
"reactive",
"message",
"tcp",
"mock",
"http",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/enqueuer-land/enqueuer"
},
"author": {
"name": "Virgs",
"email": "[email protected]",
"url": "http://github.com/virgs"
},
"license": "MIT",
"bin": {
"enqueuer": "js/index.js",
"nqr": "js/index.js"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"express": "^4.19.2",
"glob": "^11.0.0",
"jest": "^29.7.0",
"json-placeholder-replacer": "^2.0.5",
"prettyjson": "^1.2.5",
"require-from-string": "^2.0.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@types/object-hash": "^3.0.6",
"@types/prettyjson": "0.0.33",
"@types/require-from-string": "^1.2.3",
"@types/yamljs": "^0.2.34",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"pagedown": "^1.1.0",
"prettier": "^3.3.3",
"semantic-release": "^24.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"yval": "0.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/actuators/**",
"!src/sensors/**",
"!src/index.ts"
],
"coverageThreshold": {
"global": {
"statements": 80,
"branches": 80,
"functions": 80,
"lines": 80
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}