Mashape/alf-converter

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "alf-converter",
  "description": "Converts ALF data to latest schema version",
  "author": "Ahmad Nassri <ahmad@mashape.com> (https://www.mashape.com/)",
  "homepage": "https://github.com/Mashape/alf-converter",
  "repository": {
    "type": "git",
    "url": "https://github.com/Mashape/alf-converter.git"
  },
  "license": "ISC",
  "main": "lib/converter.js",
  "bin": {
    "alf-converter": "lib/bin.js"
  },
  "keywords": [
    "alf",
    "converter"
  ],
  "engines": {
    "node": ">=0.10"
  },
  "files": [
    "lib",
    "src"
  ],
  "bugs": {
    "url": "https://github.com/Mashape/alf-converter/issues"
  },
  "scripts": {
    "compile": "babel -q src --out-dir lib",
    "test": "tap test/*.js --node-arg=--require --node-arg=babel-register --node-arg=--require --node-arg=babel-polyfill | tap-mocha-reporter spec",
    "pretest": "standard && echint",
    "coverage": "tap test/*.js --coverage --nyc-arg=--require --nyc-arg=babel-register --nyc-arg=--require --nyc-arg=babel-polyfill",
    "codeclimate": "nyc report --reporter=text-lcov | codeclimate-test-reporter",
    "prepublish": "npm run compile",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "babel": {
    "presets": [
      "es2015"
    ],
    "plugins": [
      "transform-export-extensions",
      "add-module-exports"
    ]
  },
  "standard": {
    "ignore": [
      "lib/**",
      "test/fixtures/**"
    ]
  },
  "echint": {
    "ignore": [
      "lib/**",
      "test/fixtures/*.png"
    ]
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "devDependencies": {
    "babel-cli": "^6.6.5",
    "babel-plugin-add-module-exports": "^0.1.2",
    "babel-plugin-transform-export-extensions": "^6.5.0",
    "babel-polyfill": "^6.7.4",
    "babel-preset-es2015": "^6.6.0",
    "babel-register": "^6.7.2",
    "codeclimate-test-reporter": "^0.3.1",
    "cz-conventional-changelog": "^1.1.5",
    "echint": "^1.5.3",
    "nyc": "^6.1.1",
    "semantic-release": "^4.3.5",
    "standard": "^6.0.8",
    "tap": "^5.7.0",
    "tap-mocha-reporter": "0.0.24"
  },
  "dependencies": {
    "alf-validator": "^3.1.3",
    "furmat": "^0.2.0",
    "get-stdin": "^5.0.1",
    "yargs": "^4.3.2"
  }
}