-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 KB
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
{
"name": "eventsocketclientjs",
"version": "1.0.8",
"description": "Event based async networking framework for client applications",
"main": "out/index.js",
"files": [
"out",
"types"
],
"scripts": {
"test": "jest --detectOpenHandles",
"gen_proto": "protoc --proto_path=src --plugin=\"protoc-gen-ts=./node_modules/.bin/protoc-gen-ts\" --js_out=\"import_style=commonjs,binary:./out\" --ts_out=\"./src\" src/*.proto",
"build": "npm run & tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yousif-CS/eventsocketclientjs.git"
},
"keywords": [
"eventsocketclientjs"
],
"author": "Yousif-CS",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yousif-CS/eventsocketclientjs/issues"
},
"homepage": "https://github.com/Yousif-CS/eventsocketclientjs#readme",
"devDependencies": {
"@types/google-protobuf": "^3.7.4",
"@types/jest": "^26.0.18",
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/node": "^14.14.16",
"@types/ws": "^7.4.0",
"isomorphic-ws": "^4.0.1",
"ts-protoc-gen": "^0.13.0",
"typescript": "^4.1.3",
"ws": "^7.4.1"
},
"types": "./types/common/main.d.ts"
}