@availity/native-form
Version:
Submit JSON data via a native form, not AJAX. Useful when you need to open a new page with a POST action.
43 lines (42 loc) • 1.11 kB
JSON
{
"name": "native-form",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"targets": {
"test": {
"executor": "nx:run-commands",
"options": {
"command": "vitest run --project=native-form",
"cwd": "."
},
"configurations": {
"ci": {
"command": "vitest run --project=native-form --coverage"
}
}
},
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"preset": "angular",
"commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
"tagPrefix": "@availity/{projectName}@",
"baseBranch": "master",
"trackDeps": true
}
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"silent": false,
"fix": false,
"cache": true,
"cacheLocation": "./node_modules/.cache/native-form/.eslintcache",
"maxWarnings": -1,
"quiet": false,
"hasTypeAwareRules": true,
"cacheStrategy": "metadata"
}
}
}
}