-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "coronado-bridge",
"version": "2.1.0",
"description": "Coronado Bridge is a simple general purpose router of all HTTP requests. It will wrap all RESTful calls from external systems and pass those JSON message into a outbound provider.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/valtech-sd/coronado-bridge.git"
},
"scripts": {
"build": "rm -rf dist && tsc",
"test": "mocha -r ts-node/register ./tests/unit/*.test.ts"
},
"author": "Shane Mckenna",
"license": "MIT",
"dependencies": {
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"simple-mock": "^0.8.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/connect-timeout": "^0.0.35",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.24",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.4",
"@types/simple-mock": "^0.8.2",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"log4js": "^6.7.0",
"mocha": "^9.1.0",
"prettier": "^2.3.2",
"semantic-release": "^17.4.7",
"ts-node": "^10.2.1",
"tslog": "^3.3.4",
"typescript": "^4.3.5"
},
"publishConfig": {
"access": "public"
}
}