forked from Bytebit-Org/fitumi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "@rbxts/fitumi",
"version": "1.0.9",
"description": "Fake It 'Till You Make It - A unit testing utility for faking everything from Roblox Instances to custom objects.",
"main": "out/init.lua",
"scripts": {
"eslint": "npx eslint \"src/**/*.ts\" --max-warnings 0",
"prepublishOnly": "rbxtsc",
"test": "rojo build -o tests/build.rbxlx tests && run-in-roblox tests/build.rbxlx -s tests/spec.lua"
},
"keywords": [],
"author": "Bytebit",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Bytebit-Org/fitumi.git"
},
"bugs": {
"url": "https://github.com/Bytebit-Org/fitumi/issues"
},
"homepage": "https://github.com/Bytebit-Org/fitumi#readme",
"publishConfig": {
"access": "public"
},
"files": [
"out/**/*.d.ts",
"out/**/*.lua"
],
"types": "out/index.d.ts",
"devDependencies": {
"@rbxts/compiler-types": "^1.0.0-beta.14.1",
"@rbxts/types": "^1.0.439",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-roblox-ts": "0.0.7",
"prettier": "^1.19.1"
}
}