UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

71 lines (70 loc) 1.78 kB
{ "name": "babel-plugin-istanbul", "version": "2.0.3", "author": "Thai Pangsakulyanont @dtinth", "license": "BSD-3-Clause", "description": "A babel plugin that adds istanbul instrumentation to ES6 code", "main": "lib/index.js", "files": [ "lib" ], "dependencies": { "find-up": "^1.1.2", "istanbul-lib-instrument": "^1.1.4", "object-assign": "^4.1.0", "test-exclude": "^2.1.1" }, "devDependencies": { "babel-cli": "^6.3.17", "babel-core": "^6.3.21", "babel-preset-es2015": "^6.3.13", "chai": "^3.5.0", "coveralls": "^2.11.9", "cross-env": "^2.0.1", "mocha": "^3.0.2", "mock-fs": "^3.11.0", "nyc": "^8.1.0", "pmock": "^0.2.3", "standard": "^8.0.0", "standard-version": "^3.0.0" }, "scripts": { "coverage": "nyc report --reporter=text-lcov | coveralls", "release": "babel src --out-dir lib", "pretest": "standard && npm run release", "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --require=${FS_MOCK:-mock-fs} test/*.js", "prepublish": "npm test && npm run release", "version": "standard-version" }, "repository": { "type": "git", "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git" }, "keywords": [ "istanbul", "babel", "plugin", "instrumentation" ], "nyc": { "include": [ "src/*.js", "fixtures/should-cover.js" ], "require": [ "babel-core/register" ], "sourceMap": false, "instrument": false }, "bugs": { "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues" }, "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme", "greenkeeper": { "ignore": [ "find-up", "cross-env" ] } }