2022-11-09 13:52:10 +00:00
|
|
|
{
|
|
|
|
"name": "@puppeteer/ng-schematics",
|
2022-11-17 09:22:53 +00:00
|
|
|
"version": "0.0.1",
|
2022-11-09 13:52:10 +00:00
|
|
|
"description": "Puppeteer Angular schematics",
|
|
|
|
"scripts": {
|
|
|
|
"copy": "node copySchemaFiles.js",
|
|
|
|
"clean": "tsc -b --clean && rimraf lib",
|
2022-11-11 13:38:52 +00:00
|
|
|
"dev": "run-s clean copy && tsc -p tsconfig.json --watch",
|
2022-11-09 13:52:10 +00:00
|
|
|
"build": "run-s build:*",
|
|
|
|
"build:schematics": "npm run copy && tsc -p tsconfig.json",
|
|
|
|
"build:test": "tsc -p tsconfig.spec.json",
|
2022-11-11 13:38:52 +00:00
|
|
|
"test": "run-s clean build && mocha"
|
2022-11-09 13:52:10 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"angular",
|
|
|
|
"puppeteer",
|
|
|
|
"schematics"
|
|
|
|
],
|
2022-11-14 17:24:17 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/puppeteer/puppeteer/tree/main/packages/ng-schematics"
|
|
|
|
},
|
2022-11-09 13:52:10 +00:00
|
|
|
"author": "The Chromium Authors",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=14.1.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-22 13:02:24 +00:00
|
|
|
"@angular-devkit/architect": "^0.1402.10",
|
2022-11-09 13:52:10 +00:00
|
|
|
"@angular-devkit/core": "^14.2.6",
|
|
|
|
"@angular-devkit/schematics": "^14.2.6"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^14.15.0",
|
|
|
|
"@schematics/angular": "^14.2.8"
|
|
|
|
},
|
2022-11-11 13:38:52 +00:00
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"!*.tsbuildinfo"
|
|
|
|
],
|
2022-11-09 13:52:10 +00:00
|
|
|
"ng-add": {
|
|
|
|
"save": "devDependencies"
|
|
|
|
},
|
2022-11-22 13:02:24 +00:00
|
|
|
"schematics": "./lib/schematics/collection.json",
|
|
|
|
"builders": "./lib/builders/builders.json"
|
2022-11-09 13:52:10 +00:00
|
|
|
}
|