mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
493707668b
* add validateflow function * cleaner code * preprocess json * cleaning * create specific package * cleaning * add tests
33 lines
695 B
JSON
33 lines
695 B
JSON
{
|
|
"name": "windmill-yaml-validator",
|
|
"version": "1.0.0",
|
|
"description": "YAML validator for Windmill",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "./gen_openflow_schema.sh && tsc",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"windmill"
|
|
],
|
|
"author": "Ruben Fiszel",
|
|
"license": "Apache 2.0",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^24.1.0",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"dependencies": {
|
|
"@stoplight/yaml": "^4.3.0",
|
|
"ajv": "^8.17.1"
|
|
}
|
|
}
|