-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.66 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
42
43
44
45
46
47
48
{
"name": "@rbxts/linked-lists",
"version": "1.0.4",
"description": "A module that provides basic linked list data structures.",
"main": "out/init.lua",
"scripts": {
"eslint": "npx eslint \"src/**/*.ts\" --max-warnings 0",
"prepublishOnly": "rm -rf ./out; rbxtsc --type=package",
"test": "rbxtsc --type=game --rojo=./unit-testing.project.json && rojo build -o ./unit_tests.rbxlx && run-in-roblox --place ./unit_tests.rbxlx --script ./spec.server.lua",
"wsl-start-unit-tests": "set -e; rm -rf ./out; rbxtsc --type=game --rojo=./unit-testing.project.json && rojo build -o unit_tests.rbxlx ./unit-testing.project.json; ./scripts/open-in-windows ./unit_tests.rbxlx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bytebit-Org/roblox-LinkedLists.git"
},
"keywords": [],
"author": "Bytebit",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bytebit-Org/roblox-LinkedLists/issues"
},
"homepage": "https://github.com/Bytebit-Org/roblox-LinkedLists#readme",
"publishConfig": {
"access": "public"
},
"files": [
"out/**/*.d.ts",
"out/**/!(*.spec).lua"
],
"types": "out/index.d.ts",
"devDependencies": {
"@rbxts/compiler-types": "^1.2.7-types.0",
"@rbxts/types": "^1.0.546",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-roblox-ts": "0.0.24",
"prettier": "^2.2.1",
"typedoc": "^0.22.0",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^4.1.5"
},
"dependencies": {
"@rbxts/testez": "^0.3.1-ts.6"
}
}