Fitbit/webpack-config

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "webpack-config",
  "description": "Helps to load, extend and merge webpack configs",
  "main": "dist/index.js",
  "files": [
    "dist/",
    "src/"
  ],
  "scripts": {
    "clean": "rm -rf dist coverage docs",
    "lint": "eslint --ext js,md ./ --cache",
    "build": "babel src --out-dir dist --source-maps",
    "test": "babel-node jasmine.js",
    "cover": "NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json",
    "postcover": "nyc report",
    "codeclimate": "codeclimate-test-reporter < ./coverage/lcov.info",
    "jsdoc": "jsdoc ./src -c ./jsdoc.json"
  },
  "nyc": {
    "include": [
      "src/*.js"
    ],
    "require": [
      "babel-register"
    ],
    "sourceMap": false,
    "instrument": false
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Fitbit/webpack-config.git"
  },
  "keywords": [
    "webpack",
    "webpack-config"
  ],
  "author": "Marat Dreizin <marat.dreizin@gmail.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/Fitbit/webpack-config/issues"
  },
  "homepage": "https://github.com/Fitbit/webpack-config",
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-eslint": "^8.2.3",
    "babel-plugin-istanbul": "^4.1.6",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.6.1",
    "babel-register": "^6.26.0",
    "eslint": "^4.19.1",
    "eslint-plugin-babel": "^5.1.0",
    "eslint-plugin-markdown": "^1.0.0-beta.6",
    "jasmine": "^3.1.0",
    "jasmine-spec-reporter": "^4.2.1",
    "jsdoc": "^3.5.5",
    "nyc": "^11.7.1",
    "semantic-release": "^15.1.7",
    "travis-deploy-once": "^4.4.1"
  },
  "dependencies": {
    "babel-runtime": "^6.26.0",
    "constitute": "^1.6.2",
    "lodash": "^4.17.10",
    "recursive-iterator": "^3.3.0",
    "yargs-parser": "^10.0.0"
  },
  "engines": {
    "node": ">=8.0.0"
  }
}