-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 881 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 881 Bytes
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
{
"name": "eventsocketserverjs",
"version": "1.0.0",
"description": "Event based networking library for js servers",
"main": "out/index.js",
"files": [
"out",
"types"
],
"scripts": {
"test": "jest --detectOpenHandles",
"build": "npm run & tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UNSW-Redback-Racing/eventsocketserverjs.git"
},
"author": "RedBackRacing",
"license": "ISC",
"bugs": {
"url": "https://github.com/UNSW-Redback-Racing/eventsocketserverjs/issues"
},
"homepage": "https://github.com/UNSW-Redback-Racing/eventsocketserverjs#readme",
"devDependencies": {
"@types/google-protobuf": "^3.7.4",
"@types/jest": "^26.0.18",
"jest": "^26.6.3",
"ts-jest": "^26.4.4"
},
"dependencies": {
"ts-protoc-gen": "^0.14.0",
"typescript": "^4.1.3",
"ws": "^7.4.3"
}
}