-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.25 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
{
"name": "composite-service",
"version": "2.0.1",
"description": "Compose multiple services into one",
"keywords": [
"compose",
"composed",
"composite",
"group",
"grouped",
"grouping",
"merge",
"merged",
"merging",
"server",
"servers",
"service",
"services",
"program",
"programs"
],
"engines": {
"node": ">=14"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"src"
],
"scripts": {
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint-fix": "yarn lint --fix",
"clean": "shx rm -rf dist",
"build:types": "tsc",
"build:js": "babel src --source-maps true --extensions .ts --out-dir dist",
"build": "yarn build:types && yarn build:js",
"test-only": "jest --ci --runInBand",
"test": "yarn lint && yarn clean && yarn build && yarn test-only"
},
"dependencies": {
"cloneable-readable": "^3.0.0",
"merge-stream": "^2.0.0",
"npm-run-path": "^4.0.1",
"split2": "^4.2.0",
"ts-interface-checker": "^1.0.2",
"which": "^3.0.1"
},
"optionalDependencies": {
"generate-ctrl-c-event": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/cloneable-readable": "^2.0.0",
"@types/generate-ctrl-c-event": "^2.0.1",
"@types/jest": "^29.5.1",
"@types/merge-stream": "^1.1.2",
"@types/node-fetch": "^2.6.3",
"@types/split2": "^4.2.0",
"@types/which": "^3.0.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.40.0",
"eslint-config-zenflow": "^4.0.0",
"jest": "^29.5.0",
"node-fetch": "^2.6.9",
"shx": "0.3.4",
"ts-interface-builder": "^0.3.3",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"license": "MIT",
"author": {
"name": "Matthew Francis Brunetti",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenflow/composite-service.git"
},
"bugs": {
"url": "https://github.com/zenflow/composite-service/issues"
},
"homepage": "https://github.com/zenflow/composite-service#readme",
"prettier": {
"printWidth": 100
}
}