| { |
| "name": "@bazel/jasmine", |
| "description": "Run Jasmine tests under Bazel", |
| "license": "Apache-2.0", |
| "version": "0.0.0-PLACEHOLDER", |
| "repository": { |
| "type" : "git", |
| "url" : "https://github.com/bazelbuild/rules_nodejs.git", |
| "directory": "packages/jasmine" |
| }, |
| "bugs": { |
| "url": "https://github.com/bazelbuild/rules_nodejs/issues" |
| }, |
| "keywords": [ |
| "jasmine", |
| "bazel" |
| ], |
| "main": "index.js", |
| "dependencies": { |
| "jasmine-reporters": "~2.3.2", |
| "c8": "~7.5.0" |
| }, |
| "//1": "jasmine depends on jasmine-core, however since we require() it we need it hoisted to the top", |
| "//2": "so we include jasmine-core explicitly as a peerDep", |
| "//3": "version 2.99.0 is the lower bound only because that's what our e2e/jasmine test verifies", |
| "peerDependencies": { |
| "jasmine": ">=2.99.0", |
| "jasmine-core": ">=2.99.0" |
| }, |
| "scripts": { |
| "postinstall": "node npm_version_check.js" |
| } |
| } |