mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-27 14:10:32 +00:00
41 lines
878 B
JSON
41 lines
878 B
JSON
{
|
|
"name": "@ali/lowcode-engine-code-generator",
|
|
"version": "0.8.0",
|
|
"description": "出码引擎 for LowCode Engine",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf lib && tsc",
|
|
"demo": "ts-node -r tsconfig-paths/register ./src/demo/main.ts",
|
|
"test": "ava"
|
|
},
|
|
"dependencies": {
|
|
"@ali/am-eslint-config": "*",
|
|
"change-case": "^3.1.0",
|
|
"short-uuid": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^1.0.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-node": "^7.0.1",
|
|
"tsconfig-paths": "^3.9.0",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"ava": {
|
|
"compileEnhancements": false,
|
|
"snapshotDir": "test/fixtures/__snapshots__",
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://registry.npm.alibaba-inc.com"
|
|
},
|
|
"license": "MIT"
|
|
}
|