package.json 2.33 KB
Newer Older
lxyang committed
1
{
2
  "name": "babel-plugin-ry-istanbul-web",
3
  "version": "0.0.6",
lxyang committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
  "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": {
    "@babel/helper-plugin-utils": "^7.0.0",
    "@babel/parser": "^7.14.7",
    "@istanbuljs/load-nyc-config": "^1.0.0",
    "@istanbuljs/schema": "^0.1.2",
    "babel-generator": "^6.18.0",
    "babel-template": "^6.26.0",
    "babel-traverse": "^6.18.0",
    "babel-types": "^6.18.0",
    "babylon": "^6.13.0",
    "cross-env": "^7.0.3",
    "istanbul-lib-coverage": "^1.0.0",
    "onchange": "^7.1.0",
    "ry-istanbul-web": "^0.0.1",
    "semver": "^6.3.0",
    "test-exclude": "^6.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.7.5",
    "@babel/core": "^7.7.5",
    "@babel/plugin-proposal-optional-chaining": "^7.16.7",
    "@babel/plugin-transform-modules-commonjs": "^7.7.5",
33
    "@babel/preset-env": "^7.19.3",
lxyang committed
34 35 36 37 38
    "@babel/register": "^7.7.4",
    "babel-cli": "^6.3.17",
    "babel-plugin-istanbul": "^2.0.3",
    "babel-preset-es2015": "^6.3.13",
    "babel-register": "^6.16.3",
39
    "chai": "^4.2.0",
lxyang committed
40
    "clone": "^2.0.0",
41 42
    "coveralls": "^3.0.9",
    "cross-env": "^6.0.3",
lxyang committed
43
    "documentation": "^4.0.0-beta9",
44 45 46
    "eslint": "^6.8.0",
    "gaze": "^1.1.3",
    "jest": "^29.1.2",
lxyang committed
47 48
    "js-yaml": "^3.3.1",
    "jshint": "^2.8.0",
49
    "mocha": "^6.2.2",
lxyang committed
50
    "nopt": "^3.0.6",
51 52 53 54
    "nyc": "^15.0.0",
    "pmock": "^0.2.3",
    "prettier": "^2.7.1",
    "standard": "^14.3.1",
lxyang committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    "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 --timeout 5000 test/*.js",
    "prepublish": "npm test && npm run release",
    "build:watch": "onchange ./src -- npm run release"
  },
  "standard": {
    "ignore": [
      "fixtures/*.js"
    ]
  },
  "keywords": [
    "istanbul",
    "babel",
    "plugin",
    "instrumentation"
  ],
  "nyc": {
    "include": [
      "src/*.js",
      "fixtures/should-cover.js"
    ],
    "require": [
      "@babel/register"
    ],
    "sourceMap": false,
    "instrument": false
  },
  "engines": {
    "node": ">=8"
  }
}