puppeteer/packages/ng-schematics/package.json
dependabot[bot] 5bbee1068f
chore(deps): Bump the dependencies group with 2 updates (#11939)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
2024-02-22 11:09:12 +01:00

72 lines
1.6 KiB
JSON

{
"name": "@puppeteer/ng-schematics",
"version": "0.6.0",
"description": "Puppeteer Angular schematics",
"scripts": {
"build": "wireit",
"clean": "../../tools/clean.mjs",
"dev:test": "npm run test --watch",
"dev": "npm run build --watch",
"unit": "wireit"
},
"wireit": {
"build": {
"command": "tsc -b && node tools/copySchemaFiles.mjs",
"clean": "if-file-deleted",
"files": [
"tsconfig.json",
"tsconfig.test.json",
"src/**",
"test/src/**"
],
"output": [
"lib/**",
"test/build/**",
"*.tsbuildinfo"
]
},
"build:test": {
"command": "tsc -b test/tsconfig.json"
},
"unit": {
"command": "node --test --test-reporter spec test/build",
"dependencies": [
"build",
"build:test"
]
}
},
"keywords": [
"angular",
"puppeteer",
"schematics"
],
"repository": {
"type": "git",
"url": "https://github.com/puppeteer/puppeteer/tree/main/packages/ng-schematics"
},
"author": "The Chromium Authors",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@angular-devkit/architect": "0.1702.0",
"@angular-devkit/core": "17.2.0",
"@angular-devkit/schematics": "17.2.0"
},
"devDependencies": {
"@schematics/angular": "17.2.0",
"@angular/cli": "17.2.0"
},
"files": [
"lib",
"!*.tsbuildinfo"
],
"ng-add": {
"save": "devDependencies"
},
"schematics": "./lib/schematics/collection.json",
"builders": "./lib/builders/builders.json"
}