-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "@giltayar/microservices-are-made-for-testing",
"version": "1.0.23",
"description": "",
"exports": {
".": "./src/microservices-are-made-for-testing.js"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"files": [
"src",
"scripts"
],
"private": true,
"bin": {
"run-microservices-are-made-for-testing": "scripts/run-microservices-are-made-for-testing.js"
},
"scripts": {
"start": "scripts/run-microservices-are-made-for-testing.js",
"test": "npm-run-all -p test:*",
"test:eslint": "eslint '**/*.js'",
"test:ts": "tsc --noEmit",
"test:mocha": "mocha --no-timeouts --exit 'test/unit/*.test.js' 'test/it/*.test.js' 'test/e2e/*.test.js'",
"build": ":",
"postbuild": "npm run build:docker",
"build:docker": "docker build -t giltayar/microservices-are-made-for-testing .",
"postpublish": "npm run publish:docker",
"publish:docker": "docker tag giltayar/microservices-are-made-for-testing giltayar/microservices-are-made-for-testing:${npm_package_version} && docker push giltayar/microservices-are-made-for-testing:${npm_package_version} && docker push giltayar/microservices-are-made-for-testing:latest"
},
"keywords": [
"giltayar",
"testing",
"nodejs",
"javascript",
"microservices"
],
"author": "Gil Tayar <[email protected]>",
"license": "UNLICENSED",
"repository": {
"url": "https://github.com/giltayar/microservices-are-made-for-testing",
"type": "git"
},
"dependencies": {
"@giltayar/functional-commons": "^1.1.13",
"@types/node": "^20.3.1",
"camel-case": "^4.1.2",
"debug": "^4.3.4",
"fastify": "^4.18.0",
"p-retry": "^5.1.2",
"pg": "^8.11.0"
},
"devDependencies": {
"@giltayar/docker-compose-testkit": "^1.3.2",
"@giltayar/http-commons": "^2.1.4",
"@giltayar/mocha-commons": "^1.0.8",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"typescript": "^5.1.3",
"uuid": "^9.0.0"
}
}