mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
42 lines
907 B
JSON
42 lines
907 B
JSON
{
|
|
"name": "@bitwarden/key-management",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/key-management/src",
|
|
"projectType": "library",
|
|
"tags": ["scope:key-management", "type:lib"],
|
|
"targets": {
|
|
"build": {
|
|
"executor": "nx:run-script",
|
|
"dependsOn": [],
|
|
"options": {
|
|
"script": "build"
|
|
}
|
|
},
|
|
"build:watch": {
|
|
"executor": "nx:run-script",
|
|
"options": {
|
|
"script": "build:watch"
|
|
}
|
|
},
|
|
"clean": {
|
|
"executor": "nx:run-script",
|
|
"options": {
|
|
"script": "clean"
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["libs/key-management/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "nx:run-script",
|
|
"options": {
|
|
"script": "test"
|
|
}
|
|
}
|
|
}
|
|
}
|