summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/packages/ng-schematics/package.json
blob: e7f645d4d3f4742521635e5a4251f80dee068282 (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
{
  "name": "@puppeteer/ng-schematics",
  "version": "0.2.0",
  "description": "Puppeteer Angular schematics",
  "scripts": {
    "build": "wireit",
    "clean": "tsc -b --clean && rm -rf lib && rm -rf test/build",
    "dev:test": "npm run test --watch",
    "dev": "npm run build --watch",
    "test": "wireit",
    "sandbox": "node tools/sandbox.js"
  },
  "wireit": {
    "build": {
      "command": "tsc -b && node tools/copySchemaFiles.js",
      "clean": "if-file-deleted",
      "files": [
        "tsconfig.json",
        "tsconfig.spec.json",
        "src/**",
        "test/src/**"
      ],
      "output": [
        "lib/**",
        "test/build/**"
      ]
    },
    "test": {
      "command": "mocha",
      "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": {
    "node": ">=16.0.0"
  },
  "dependencies": {
    "@angular-devkit/architect": "^0.1502.7",
    "@angular-devkit/core": "^15.2.7",
    "@angular-devkit/schematics": "^15.2.7"
  },
  "devDependencies": {
    "@types/node": "^14.15.0",
    "@schematics/angular": "^14.2.8",
    "@angular/cli": "^15.2.2"
  },
  "files": [
    "lib",
    "!*.tsbuildinfo"
  ],
  "ng-add": {
    "save": "devDependencies"
  },
  "schematics": "./lib/schematics/collection.json",
  "builders": "./lib/builders/builders.json"
}