mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 22:22:51 +00:00
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "@ali/lowcode-material-parser",
|
|
"version": "0.8.0",
|
|
"description": "material parser for Ali lowCode engine",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib",
|
|
"schemas"
|
|
],
|
|
"devDependencies": {
|
|
"@types/debug": "^4.1.5",
|
|
"@types/fs-extra": "^8.0.1",
|
|
"@types/js-yaml": "^3.12.2",
|
|
"@types/lodash": "^4.14.149",
|
|
"@types/semver": "^7.1.0",
|
|
"ajv": "^6.10.2",
|
|
"better-ajv-errors": "^0.6.4",
|
|
"globby": "^10.0.1",
|
|
"jest": "^24.8.0",
|
|
"jest-watch-typeahead": "^0.3.1",
|
|
"js-yaml": "^3.13.1",
|
|
"json-schema-to-typescript": "^8.2.0",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prebuild": "npm run schema",
|
|
"test": "ava",
|
|
"test:snapshot": "ava --update-snapshots",
|
|
"schema": "node ./scripts/transform.js"
|
|
},
|
|
"ava": {
|
|
"snapshotDir": "test/fixtures/__snapshots__",
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
],
|
|
"include": [
|
|
"test/generator/Generator.ts"
|
|
]
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/generator": "^7.8.4",
|
|
"@babel/parser": "^7.8.4",
|
|
"@babel/traverse": "^7.8.4",
|
|
"@babel/types": "^7.8.3",
|
|
"cross-spawn-promise": "^0.10.2",
|
|
"debug": "^4.1.1",
|
|
"fs-extra": "^8.1.0",
|
|
"lodash": "^4.17.15",
|
|
"react-docgen": "^5.3.0",
|
|
"semver": "^7.1.3",
|
|
"short-uuid": "^3.1.1"
|
|
}
|
|
}
|