puppeteer/packages/ng-schematics/package.json
dependabot[bot] 51fee9e1da
chore(deps): Bump @angular-devkit/architect from 0.1600.5 to 0.1601.0 (#10380)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-15 11:43:27 +02:00

70 lines
1.5 KiB
JSON

{
"name": "@puppeteer/ng-schematics",
"version": "0.2.0",
"description": "Puppeteer Angular schematics",
"scripts": {
"build": "wireit",
"clean": "tsc -b --clean && rm -rf lib && rm -rf test/build",
"dev:test": "npm run test --watch",
"dev": "npm run build --watch",
"test": "wireit",
"sandbox": "node tools/sandbox.js"
},
"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.1601.0",
"@angular-devkit/core": "^16.0.5",
"@angular-devkit/schematics": "^16.0.5"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@schematics/angular": "^16.0.4",
"@angular/cli": "^16.0.4",
"rxjs": "7.8.1"
},
"files": [
"lib",
"!*.tsbuildinfo"
],
"ng-add": {
"save": "devDependencies"
},
"schematics": "./lib/schematics/collection.json",
"builders": "./lib/builders/builders.json"
}