126 lines
4.5 KiB
JSON
126 lines
4.5 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "istanbul-lib-instrument@^1.7.5",
|
|
"scope": null,
|
|
"escapedName": "istanbul-lib-instrument",
|
|
"name": "istanbul-lib-instrument",
|
|
"rawSpec": "^1.7.5",
|
|
"spec": ">=1.7.5 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/babel-plugin-istanbul"
|
|
]
|
|
],
|
|
"_from": "istanbul-lib-instrument@>=1.7.5 <2.0.0",
|
|
"_id": "istanbul-lib-instrument@1.9.1",
|
|
"_inCache": true,
|
|
"_location": "/istanbul-lib-instrument",
|
|
"_nodeVersion": "8.7.0",
|
|
"_npmOperationalInternal": {
|
|
"host": "s3://npm-registry-packages",
|
|
"tmp": "tmp/istanbul-lib-instrument-1.9.1.tgz_1508687628818_0.1513688329141587"
|
|
},
|
|
"_npmUser": {
|
|
"name": "bcoe",
|
|
"email": "ben@npmjs.com"
|
|
},
|
|
"_npmVersion": "5.5.1",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "istanbul-lib-instrument@^1.7.5",
|
|
"scope": null,
|
|
"escapedName": "istanbul-lib-instrument",
|
|
"name": "istanbul-lib-instrument",
|
|
"rawSpec": "^1.7.5",
|
|
"spec": ">=1.7.5 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/babel-plugin-istanbul",
|
|
"/istanbul-api",
|
|
"/jest/jest-cli"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz",
|
|
"_shasum": "250b30b3531e5d3251299fdd64b0b2c9db6b558e",
|
|
"_shrinkwrap": null,
|
|
"_spec": "istanbul-lib-instrument@^1.7.5",
|
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/babel-plugin-istanbul",
|
|
"author": {
|
|
"name": "Krishnan Anantheswaran",
|
|
"email": "kananthmail-github@yahoo.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/istanbuljs/istanbuljs/issues"
|
|
},
|
|
"dependencies": {
|
|
"babel-generator": "^6.18.0",
|
|
"babel-template": "^6.16.0",
|
|
"babel-traverse": "^6.18.0",
|
|
"babel-types": "^6.18.0",
|
|
"babylon": "^6.18.0",
|
|
"istanbul-lib-coverage": "^1.1.1",
|
|
"semver": "^5.3.0"
|
|
},
|
|
"description": "Core istanbul API for JS code coverage",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.3.17",
|
|
"babel-plugin-istanbul": "^2.0.3",
|
|
"babel-preset-es2015": "^6.3.13",
|
|
"babel-register": "^6.16.3",
|
|
"chai": "^3.0.0",
|
|
"clone": "^2.0.0",
|
|
"coveralls": "^2.11.4",
|
|
"cross-env": "^2.0.1",
|
|
"documentation": "^4.0.0-beta9",
|
|
"js-yaml": "^3.3.1",
|
|
"jshint": "^2.8.0",
|
|
"mocha": "^3.1.2",
|
|
"nopt": "^3.0.6"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"integrity": "sha512-RQmXeQ7sphar7k7O1wTNzVczF9igKpaeGQAG9qR2L+BS4DCJNTI9nytRmIVYevwO0bbq+2CXvJmYDuz0gMrywA==",
|
|
"shasum": "250b30b3531e5d3251299fdd64b0b2c9db6b558e",
|
|
"tarball": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"homepage": "https://github.com/istanbuljs/istanbuljs",
|
|
"keywords": [
|
|
"coverage",
|
|
"istanbul",
|
|
"js",
|
|
"instrumentation"
|
|
],
|
|
"license": "BSD-3-Clause",
|
|
"main": "dist/index.js",
|
|
"maintainers": [
|
|
{
|
|
"name": "bcoe",
|
|
"email": "ben@npmjs.com"
|
|
},
|
|
{
|
|
"name": "gotwarlost",
|
|
"email": "kananthmail-github@yahoo.com"
|
|
}
|
|
],
|
|
"name": "istanbul-lib-instrument",
|
|
"optionalDependencies": {},
|
|
"readme": "istanbul-lib-instrument\n-----------------------\n\n[![Build Status](https://travis-ci.org/istanbuljs/istanbul-lib-instrument.svg?branch=master)](https://travis-ci.org/istanbuljs/istanbul-lib-instrument)\n\nIstanbul instrumenter library.\n\nVersion 1.1.x now implements instrumentation using `Babel`. The implementation is inspired\nby prior art by @dtinth as demonstrated in the `__coverage__` babel plugin.\n\nIt provides 2 \"modes\" of instrumentation.\n\n* The old API that is mostly unchanged (except for incompatibilities noted) and\n performs the instrumentation using babel as a library.\n\n* A `programVisitor` function for the Babel AST that can be used by a Babel plugin\n to emit instrumentation for ES6 code directly without any source map\n processing. This is the preferred path for babel users. The Babel plugin is\n called `babel-plugin-istanbul`.\n\nIncompatibilities and changes to instrumentation behavior can be found in\n[v0-changes.md](v0-changes.md).\n\n\n",
|
|
"readmeFilename": "README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git"
|
|
},
|
|
"scripts": {
|
|
"prepublish": "npm run release",
|
|
"pretest": "jshint src/ test/",
|
|
"release": "babel src --out-dir dist && documentation build -f md -o api.md src",
|
|
"test": "mocha --require=babel-register"
|
|
},
|
|
"version": "1.9.1"
|
|
}
|