https://github.com/angular/angular
Raw File
Tip revision: 29b2c42690d950583a72bf2f5692b0324d52989b authored by Nemikolh on 05 June 2023, 13:02:16 UTC
fix(docs-infra): replace use of turbo on StackBlitz with npm (#50576)
Tip revision: 29b2c42
package.json
{
  "name": "@angular/common",
  "version": "0.0.0-PLACEHOLDER",
  "description": "Angular - commonly needed directives and services",
  "author": "angular",
  "license": "MIT",
  "engines": {
    "node": "^12.20.0 || ^14.15.0 || >=16.10.0"
  },
  "locales": "locales",
  "dependencies": {
    "tslib": "^2.3.0"
  },
  "exports": {
    "./locales/global/*": {
      "default": "./locales/global/*.js"
    },
    "./locales/*": {
      "default": "./locales/*.mjs"
    }
  },
  "peerDependencies": {
    "@angular/core": "0.0.0-PLACEHOLDER",
    "rxjs": "^6.5.3 || ^7.4.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/angular/angular.git",
    "directory": "packages/common"
  },
  "ng-update": {
    "packageGroup": "NG_UPDATE_PACKAGE_GROUP"
  },
  "sideEffects": [
    "**/global/*.js",
    "**/closure-locale.*"
  ]
}
back to top