puppeteer/packages/ng-schematics/package.json

37 lines
932 B
JSON
Raw Normal View History

{
"name": "@puppeteer/ng-schematics",
"version": "0.0.0",
"description": "Puppeteer Angular schematics",
"scripts": {
"copy": "node copySchemaFiles.js",
"clean": "tsc -b --clean && rimraf lib",
"dev": "npm run copy && tsc -p tsconfig.json --watch",
"build": "run-s build:*",
"build:schematics": "npm run copy && tsc -p tsconfig.json",
"build:test": "tsc -p tsconfig.spec.json",
"test": "run-s build && mocha"
},
"keywords": [
"angular",
"puppeteer",
"schematics"
],
"author": "The Chromium Authors",
"license": "Apache-2.0",
"engines": {
"node": ">=14.1.0"
},
"dependencies": {
"@angular-devkit/core": "^14.2.6",
"@angular-devkit/schematics": "^14.2.6"
},
"devDependencies": {
"@types/node": "^14.15.0",
"@schematics/angular": "^14.2.8"
},
"ng-add": {
"save": "devDependencies"
},
"schematics": "./lib/schematics/collection.json"
}