puppeteer/packages/ng-schematics/package.json
dependabot[bot] dc5eb660e8
chore(deps-dev): Bump the dev-dependencies group with 3 updates (#11206)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-20 08:29:05 +02:00

71 lines
1.6 KiB
JSON

{
"name": "@puppeteer/ng-schematics",
"version": "0.5.0",
"description": "Puppeteer Angular schematics",
"scripts": {
"build": "wireit",
"clean": "../../tools/clean.js",
"dev:test": "npm run test --watch",
"dev": "npm run build --watch",
"sandbox:test": "node tools/sandbox.js --test",
"sandbox": "node tools/sandbox.js",
"test": "wireit"
},
"wireit": {
"build": {
"command": "tsc -b && node tools/copySchemaFiles.js",
"clean": "if-file-deleted",
"files": [
"tsconfig.json",
"tsconfig.spec.json",
"src/**",
"test/src/**"
],
"output": [
"lib/**",
"test/build/**"
]
},
"test": {
"command": "mocha",
"dependencies": [
"build"
]
}
},
"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": ">=16.3.0"
},
"dependencies": {
"@angular-devkit/architect": "^0.1602.6",
"@angular-devkit/core": "^16.2.6",
"@angular-devkit/schematics": "^16.2.6"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@schematics/angular": "^16.2.7",
"@angular/cli": "^16.2.7",
"rxjs": "7.8.1"
},
"files": [
"lib",
"!*.tsbuildinfo"
],
"ng-add": {
"save": "devDependencies"
},
"schematics": "./lib/schematics/collection.json",
"builders": "./lib/builders/builders.json"
}