summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/packages/ng-schematics/package.json
blob: 6d88d23926771a2d89b56ee01b16ed7874182c6f (plain)
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.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.2",
    "@angular-devkit/core": "17.2.2",
    "@angular-devkit/schematics": "17.2.2"
  },
  "devDependencies": {
    "@schematics/angular": "17.2.2",
    "@angular/cli": "17.2.2"
  },
  "files": [
    "lib",
    "!*.tsbuildinfo"
  ],
  "ng-add": {
    "save": "devDependencies"
  },
  "schematics": "./lib/schematics/collection.json",
  "builders": "./lib/builders/builders.json"
}