-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
113 lines (113 loc) · 3.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "node-jet",
"version": "3.0.12",
"description": "Jet Realtime Message Bus for the Web. Daemon and Peer implementation.",
"url": "https://github.com/hbm/node-jet",
"author": {
"name": "Florian Schopp",
"email": "florian_schopp@hotmail.com"
},
"type": "module",
"contributors": [
{
"name": "Gerhard Preuss",
"email": "gelipp@gmail.com"
},
{
"name": "Fahri Sönmez",
"email": "fahri.soenmez@hbmworld.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/HBM/node-jet"
},
"license": "MIT",
"keywords": [
"ipc",
"push",
"message",
"realtime",
"rpc",
"jet",
"json"
],
"scripts": {
"test": "jest",
"build": "tsc",
"ci": "npm run ci:eslint && npm run ci:prettier && npm run ci:type-check && npm run test",
"ci:eslint": "eslint --max-warnings 0 --ignore-path .prettierignore $npm_package_config_files",
"ci:prettier": "prettier --check $npm_package_config_files ",
"ci:type-check": "tsc --noEmit --skipLibCheck",
"prettier": "prettier --write $npm_package_config_files",
"eslint": "eslint --fix --max-warnings 0 --ignore-path .prettierignore $npm_package_config_files",
"ex:chat": "npm run build && concurrently \"webpack serve --config examples/chat/webpack.config.cjs\" \"wait-on examples/chat/dist/server.cjs && node examples/chat/dist/server.cjs\"",
"ex:todo": "rm -r examples/todo/dist && npm run build && concurrently \"webpack serve --config examples/todo/webpack.config.cjs\" \"wait-on examples/todo/dist/server.cjs && node examples/todo/dist/server.cjs\"",
"ex:balls": "npm run build && concurrently \"webpack serve --config examples/balls/webpack.config.cjs\" \"wait-on examples/balls/dist/server.cjs && node examples/balls/dist/server.cjs\""
},
"dependencies": {
"css-loader": "^6.8.1",
"events": "^3.3.0",
"html-webpack-plugin": "^5.5.3",
"jsdoc": "^4.0.2",
"nanoid": "^5.0.3",
"net": "^1.0.2",
"postcss-loader": "^7.3.3",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/d3-selection": "^3.0.10",
"@types/jest": "^29.5.10",
"@types/prettier": "^3.0.0",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"concurrently": "^8.2.2",
"d3": "^7.8.5",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2",
"wait-for-expect": "^3.0.2",
"wait-on": "^7.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"main": "./lib/index.js",
"files": [
"lib"
],
"config": {
"files": "**/*.{js,jsx,ts,tsx,json,html,yml}"
},
"engines": {
"node": ">6.14.18"
},
"bugs": {
"url": "https://github.com/HBM/node-jet/issues",
"email": "florian_schopp@hotmail.com"
},
"browser": {
"ws": false,
"fs": false,
"events": false
},
"standard": {
"ignore": [
"build/",
"examples/",
"src/"
]
},
"publishConfig": {
"access": "public"
}
}