puppeteer/packages/ng-schematics/package.json

68 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "@puppeteer/ng-schematics",
"version": "0.5.5",
"description": "Puppeteer Angular schematics",
"scripts": {
"build": "wireit",
"clean": "../../tools/clean.js",
2023-02-10 17:57:17 +00:00
"dev:test": "npm run test --watch",
"dev": "npm run build --watch",
2024-01-03 09:57:25 +00:00
"unit": "wireit"
},
"wireit": {
2023-02-10 17:57:17 +00:00
"build": {
2024-01-03 09:57:25 +00:00
"command": "tsc -b && node tools/copySchemaFiles.mjs",
2023-02-10 17:57:17 +00:00
"clean": "if-file-deleted",
"files": [
2023-03-14 15:10:28 +00:00
"tsconfig.json",
2024-01-03 09:57:25 +00:00
"tsconfig.test.json",
2023-03-14 15:10:28 +00:00
"src/**",
"test/src/**"
],
"output": [
2023-03-14 15:10:28 +00:00
"lib/**",
"test/build/**",
"*.tsbuildinfo"
]
},
2024-01-03 09:57:25 +00:00
"unit": {
"command": "node --test --test-reporter spec test/build",
"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": {
2023-11-10 10:29:05 +00:00
"node": ">=16.13.2"
},
"dependencies": {
"@angular-devkit/architect": "^0.1700.7",
"@angular-devkit/core": "^17.0.7",
"@angular-devkit/schematics": "^17.0.7"
},
"devDependencies": {
"@schematics/angular": "^17.0.7",
2024-01-03 09:57:25 +00:00
"@angular/cli": "^17.0.7"
},
"files": [
"lib",
"!*.tsbuildinfo"
],
"ng-add": {
"save": "devDependencies"
},
"schematics": "./lib/schematics/collection.json",
"builders": "./lib/builders/builders.json"
}