mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
61 lines
1.1 KiB
JSON
61 lines
1.1 KiB
JSON
{
|
|
"packageId": "lua_test",
|
|
"name": "Lua Test",
|
|
"version": "1.0.0",
|
|
"description": "Unit testing framework for Lua scripts in MetaBuilder packages",
|
|
"icon": "static_content/icon.svg",
|
|
"author": "MetaBuilder",
|
|
"category": "tools",
|
|
"dependencies": [],
|
|
"exports": {
|
|
"components": [
|
|
"TestRunner",
|
|
"TestResults"
|
|
],
|
|
"scripts": [
|
|
"framework",
|
|
"runner",
|
|
"assertions",
|
|
"mocks"
|
|
]
|
|
},
|
|
"minLevel": 3,
|
|
"primary": false,
|
|
"permissions": {
|
|
"lua.test.run": {
|
|
"minLevel": 3,
|
|
"description": "Run Lua tests"
|
|
},
|
|
"lua.test.view": {
|
|
"minLevel": 3,
|
|
"description": "View test results",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
}
|
|
},
|
|
"seed": {
|
|
"styles": "seed/styles.json",
|
|
"storybook": {
|
|
"stories": []
|
|
}
|
|
},
|
|
"storybook": {
|
|
"stories": [
|
|
{
|
|
"name": "Lua_Test",
|
|
"render": "framework"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": [],
|
|
"tests": {
|
|
"scripts": [
|
|
"tests/metadata.test.lua"
|
|
],
|
|
"cases": [
|
|
"tests/metadata.cases.json"
|
|
]
|
|
}
|
|
}
|