Alan Agius bd17610c29 feat(dev-infra): make ts-api-guardian compatible with rules_nodejs version 3 (#40353)
Changes include:
- Remove `bazelWorkspaces` as this is no longer supported due to
  a single version policy https://github.com/bazelbuild/rules_nodejs/pull/783
  and `install_bazel_dependencies` has been removed.
- Enable `bazel_patch_module_resolver` since monkey-patch the
   implementation of `require()` in NodeJS is opt-in

More info about the changes can be found here: https://github.com/bazelbuild/rules_nodejs/wiki#migrating-to-30

Blocking: https://github.com/angular/angular-cli/pull/19716

PR Close #40353
2021-01-11 15:36:29 -08:00

49 lines
1.3 KiB
JSON

{
"name": "ts-api-guardian",
"version": "0.5.0",
"description": "Guards the API of TypeScript libraries!",
"main": "lib/main.js",
"typings": "lib/main.d.ts",
"bin": {
"ts-api-guardian": "./bin/ts-api-guardian"
},
"directories": {
"test": "test"
},
"peerDependencies": {
"typescript": "~3.9.2"
},
"dependencies": {
"chalk": "^2.3.1",
"diff": "^3.5.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/diff": "^3.5.1",
"@types/jasmine": "^2.8.8",
"@types/minimist": "^1.2.0",
"@types/node": "^10.9.4",
"chai": "^4.1.2",
"jasmine": "^3.1.0",
"source-map-support": "^0.5.9",
"typescript": "4.1.2"
},
"repository": {},
"keywords": [
"typescript"
],
"contributors": [
"Alan Agius <alan.agius4@gmail.com> (https://github.com/alan-agius4/)",
"Alex Eagle <alexeagle@google.com> (https://angular.io/)",
"Martin Probst <martinprobst@google.com> (https://angular.io/)",
"Victor Savkin <vsavkin@google.com> (https://victorsavkin.com)",
"Igor Minar <iminar@google.com> (https://angular.io/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/angular/issues"
},
"homepage": "https://github.com/angular/angular/tools/ts-api-guardian"
}