This repository was archived by the owner on Jul 9, 2021. It is now read-only.
-
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.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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": "@rbxts/net-eventemitter",
"version": "1.1.0",
"description": "@rbxts/eventemitter, but with 100% more RemoteEvents",
"main": "out/init.lua",
"scripts": {
"prepublishOnly": "rm -r out && rbxtsc --type package",
"test-setup": "rm -r ./out && rbxtsc --type game && rojo build -o Tests.rbxlx",
"test": "npm run test-setup && run-in-roblox --place ./Tests.rbxlx --script ./out/testRunner.server.lua"
},
"keywords": [],
"author": "Mixu_78",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Mixu78/net-eventemitter"
},
"homepage": "https://github.com/Mixu78/net-eventemitter/blob/master/README.md",
"publishConfig": {
"access": "public"
},
"types": "out/index.d.ts",
"devDependencies": {
"@rbxts/compiler-types": "^1.0.0-types.0",
"@rbxts/testez": "^0.3.1-ts.6",
"@rbxts/types": "^1.0.463",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-roblox-ts": "^0.0.24",
"prettier": "^2.2.1",
"rbxts-transformer-services": "^1.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@rbxts/janitor": "^1.0.6",
"@rbxts/services": "^1.1.2",
"@rbxts/t": "^2.1.1"
},
"files": [
"out/client.*",
"out/server.*",
"out/types.*",
"out/index.d.ts",
"out/init.lua"
]
}