-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "composite-service-http-gateway",
"version": "1.0.0",
"description": "Configurable http gateway service for use with composite-service",
"engines": {
"node": ">=10"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"server"
],
"scripts": {
"lint": "eslint . --ext .js,.ts",
"lint-fix": "yarn lint --fix",
"build": "tsc",
"demo": "ts-node test/fixtures/basic-routing-example.ts",
"test-only": "jest --ci --runInBand",
"test": "yarn lint && yarn test-only && yarn build"
},
"dependencies": {
"@types/serve-static": "^1.13.9",
"connect": "^3.7.0",
"finalhandler": "^1.1.2",
"http-proxy-middleware": "^1.3.1",
"serialize-javascript": "^5.0.1",
"serve-static": "^1.14.1"
},
"peerDependencies": {
"composite-service": "^1.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/serialize-javascript": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"composite-service": "^1.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"prettier": "^2.1.2",
"semantic-release": "^17.4.2",
"stream-line-reader": "^1.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.2.4"
},
"license": "MIT",
"author": {
"name": "Matthew Francis Brunetti",
"email": "zenflow87@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenflow/composite-service-http-gateway.git"
},
"bugs": {
"url": "https://github.com/zenflow/composite-service-http-gateway/issues"
},
"homepage": "https://github.com/zenflow/composite-service-http-gateway#readme",
"prettier": {
"printWidth": 100
}
}