mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
5bbee1068f
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>
72 lines
1.6 KiB
JSON
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"
|
|
}
|