1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
{
"name": "@puppeteer/ng-schematics",
"version": "0.5.6",
"description": "Puppeteer Angular schematics",
"scripts": {
"build": "wireit",
"clean": "../../tools/clean.js",
"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": ">=16.13.2"
},
"dependencies": {
"@angular-devkit/architect": "^0.1701.1",
"@angular-devkit/core": "^17.0.7",
"@angular-devkit/schematics": "^17.0.7"
},
"devDependencies": {
"@schematics/angular": "^17.0.7",
"@angular/cli": "^17.0.7"
},
"files": [
"lib",
"!*.tsbuildinfo"
],
"ng-add": {
"save": "devDependencies"
},
"schematics": "./lib/schematics/collection.json",
"builders": "./lib/builders/builders.json"
}
|