-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.28 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
{
"name": "switchboard-operator-api",
"version": "2.5.1",
"description": "Handle the asyncronous communication between microservices using AMQP",
"main": "built/app.js",
"scripts": {
"test": "NODE_ENV=test jest src/*",
"test-operators": "NODE_ENV=test-operators jest operators-tester.spec",
"build": "tsc",
"start": "tsc && node built/app.js",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "[email protected]:switchboardoperator/switchboard-operator.git"
},
"keywords": [
"amqp",
"rabbitmq",
"soa"
],
"author": "Alvarium <[email protected]>",
"contributors": [
{
"name": "Genar Trias",
"email": "[email protected]",
"url": "https://github.com/gtrias"
},
{
"name": "Òscar Casajuana",
"email": "[email protected]",
"url": "https://sourcerer.io/elboletaire"
},
{
"name": "Alexander Arce",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@types/axios-mock-adapter": "^1.10.0",
"@types/config": "^0.0.36",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/js-yaml": "^3.12.3",
"@types/node": "^13.13.5",
"jest": "^24.9.0",
"superagent": "^5.2.2",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.8.2",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.5.3",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"axios": "^0.19.2",
"axios-mock-adapter": "^1.18.1",
"chalk": "^2.4.2",
"config": "^3.3.1",
"decamelize-keys": "^1.1.0",
"deepmerge": "^4.2.2",
"express": "^4.17.1",
"express-healthcheck": "^0.1.0",
"express-nunjucks": "^2.2.5",
"js-yaml": "^3.13.1",
"nunjucks": "^3.2.1",
"object-mapper": "^5.0.0",
"object-transformer": "0.0.5",
"rabbot": "^2.1.0",
"schema-object": "^4.0.11",
"storm-react-diagrams": "^5.2.1",
"winston": "^2.4.0"
},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}