@availity/authorize
Version:
Check user permissions to see if the current user is authorized to see your content.
47 lines (46 loc) • 1.18 kB
JSON
{
"name": "@availity/authorize",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"targets": {
"test": {
"executor": "nx:run-commands",
"options": {
"command": "vitest run --project=authorize",
"cwd": "."
},
"configurations": {
"ci": {
"command": "vitest run --project=authorize --coverage"
}
}
},
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"preset": "angular",
"commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
"tagPrefix": "{projectName}@",
"baseBranch": "master"
}
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"silent": false,
"fix": false,
"cache": true,
"cacheLocation": "./node_modules/.cache/authorize/.eslintcache",
"maxWarnings": -1,
"quiet": false,
"cacheStrategy": "metadata"
}
},
"build": {
"command": "tsup src/index.ts --format esm --dts",
"options": {
"cwd": "packages/authorize"
}
}
}
}