-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.53 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
{
"name": "@wuespace/vertx-mock-server",
"description": "The Vert.x event bus mock server for Telestion Client",
"license": "MIT",
"version": "0.18.1",
"homepage": "https://telestion.wuespace.de/",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"lint": "eslint",
"check": "tsc --noEmit",
"style": "pnpm -w style",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuespace/telestion-client.git",
"directory": "packages/mock-server"
},
"bugs": {
"url": "https://github.com/wuespace/telestion-client/issues"
},
"author": {
"name": "wuespace",
"email": "[email protected]",
"url": "https://www.wuespace.de/"
},
"contributors": [
{
"name": "Liam Franssen",
"email": "[email protected]",
"url": "https://github.com/leecemin"
},
{
"name": "Pablo Klaschka",
"email": "[email protected]",
"url": "https://github.com/pklaschka"
},
{
"name": "Jan Tischhöfer",
"email": "[email protected]",
"url": "https://github.com/jantischhoefer"
},
{
"name": "Ludwig Richter",
"email": "[email protected]",
"url": "https://github.com/fussel178"
}
],
"dependencies": {
"@fliegwerk/logsemts": "^0.4.3",
"@types/sockjs": "^0.3.32",
"@wuespace/telestion-client-types": "workspace:^",
"sockjs": "^0.3.21"
},
"publishConfig": {
"access": "public"
}
}