tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

package.json (1626B)


      1 {
      2  "name": "@puppeteer/ng-schematics",
      3  "version": "0.7.0",
      4  "description": "Puppeteer Angular schematics",
      5  "scripts": {
      6    "build": "wireit",
      7    "clean": "../../tools/clean.mjs",
      8    "dev:test": "npm run test --watch",
      9    "dev": "npm run build --watch",
     10    "unit": "wireit"
     11  },
     12  "wireit": {
     13    "build": {
     14      "command": "tsc -b && node tools/copySchemaFiles.mjs",
     15      "clean": "if-file-deleted",
     16      "files": [
     17        "tsconfig.json",
     18        "tsconfig.test.json",
     19        "src/**",
     20        "test/src/**"
     21      ],
     22      "output": [
     23        "lib/**",
     24        "test/build/**",
     25        "*.tsbuildinfo"
     26      ]
     27    },
     28    "build:test": {
     29      "command": "tsc -b test/tsconfig.json"
     30    },
     31    "unit": {
     32      "command": "node --test --test-reporter=spec \"test/build/**/*.test.js\"",
     33      "dependencies": [
     34        "build",
     35        "build:test"
     36      ]
     37    }
     38  },
     39  "keywords": [
     40    "angular",
     41    "puppeteer",
     42    "schematics"
     43  ],
     44  "repository": {
     45    "type": "git",
     46    "url": "https://github.com/puppeteer/puppeteer/tree/main/packages/ng-schematics"
     47  },
     48  "author": "The Chromium Authors",
     49  "license": "Apache-2.0",
     50  "engines": {
     51    "node": ">=18"
     52  },
     53  "dependencies": {
     54    "@angular-devkit/architect": "0.1801.4",
     55    "@angular-devkit/core": "18.1.4",
     56    "@angular-devkit/schematics": "18.1.4"
     57  },
     58  "devDependencies": {
     59    "@schematics/angular": "19.2.13",
     60    "@angular/cli": "19.2.13"
     61  },
     62  "files": [
     63    "lib",
     64    "!*.tsbuildinfo"
     65  ],
     66  "ng-add": {
     67    "save": "devDependencies"
     68  },
     69  "schematics": "./lib/schematics/collection.json",
     70  "builders": "./lib/builders/builders.json"
     71 }