mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 22:22:51 +00:00
32 lines
616 B
JSON
32 lines
616 B
JSON
{
|
|
"name": "@ali/lowcode-engine-runtime",
|
|
"version": "0.0.1",
|
|
"description": "runtime for Ali lowCode engine",
|
|
"main": "lib/index.js",
|
|
"publishConfig": {
|
|
"registry": "https://registry.npm.alibaba-inc.com"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "ava",
|
|
"test:snapshot": "ava --update-snapshots"
|
|
},
|
|
"ava": {
|
|
"compileEnhancements": false,
|
|
"snapshotDir": "test/fixtures/__snapshots__",
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
]
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@ali/recore": "^1.6.9"
|
|
}
|
|
}
|