-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
{
"name": "@rbxts/runit",
"version": "1.4.7",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"rbxts",
"roblox",
"runit",
"xunit",
"unit",
"testing",
"test"
],
"repository": {
"url": "git+https://github.com/R-unic/runit.git"
},
"author": "runicly",
"license": "ISC",
"description": "A unit testing library for Roblox heavily inspired by xUnit from C#",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.813",
"rbxts-transformer-flamework": "latest",
"roblox-ts": "^3.0.0",
"typescript": "=5.5.2"
},
"dependencies": {
"@flamework/core": "latest",
"@rbxts/instance-utility": "^1.0.3",
"@rbxts/range": "^1.0.0",
"@rbxts/repr": "^1.0.1",
"@rbxts/string-builder": "^1.0.6",
"@rbxts/string-utils": "^1.0.3"
}
}