-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "luau-path",
"version": "0.1.1",
"description": "A Luau library to handle file paths based on the Rust path library",
"license": "MIT",
"author": "jeparlefrancais <jeparlefrancais21@gmail.com>",
"homepage": "https://github.com/seaofvoices/luau-path#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/seaofvoices/luau-path.git"
},
"keywords": [
"luau",
"path"
],
"main": "src/init.luau",
"scripts": {
"build": "sh ./scripts/build.sh",
"clean": "rm -rf node_modules build temp",
"format": "stylua .",
"lint": "sh ./scripts/analyze.sh && selene src",
"lint:luau": "sh ./scripts/analyze.sh",
"lint:selene": "selene src",
"prepare": "npmluau",
"style-check": "stylua . --check",
"test:roblox": "sh ./scripts/roblox-test.sh",
"verify-pack": "yarn pack --dry-run"
},
"dependencies": {
"luau-disk": "^0.1.1"
},
"devDependencies": {
"@jsdotlua/jest": "^3.10.0",
"@jsdotlua/jest-globals": "^3.10.0",
"npmluau": "^0.1.2"
},
"packageManager": "yarn@4.2.2"
}