lgaticaq/tbk-oneclick

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "tbk-oneclick",
  "version": "0.0.1",
  "description": "Node Implementation of Transbank Oneclick API SOAP",
  "main": "src",
  "scripts": {
    "pretest": "eslint .",
    "test": "istanbul cover _mocha",
    "coveralls": "coveralls < coverage/lcov.info",
    "codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
    "release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
    "release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
    "release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
  },
  "engines": {
    "node": ">=4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lgaticaq/tbk-oneclick.git"
  },
  "keywords": [
    "tbk",
    "oneclick",
    "soap",
    "transbank"
  ],
  "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lgaticaq/tbk-oneclick/issues"
  },
  "homepage": "https://github.com/lgaticaq/tbk-oneclick#readme",
  "dependencies": {
    "moment": "^2.14.1",
    "node-forge": "^0.10.0",
    "strong-soap": "^1.1.0",
    "xml-c14n": "^0.0.6"
  },
  "devDependencies": {
    "chai": "4.5.0",
    "codeclimate-test-reporter": "0.5.1",
    "coveralls": "3.1.0",
    "eslint": "5.16.0",
    "generate-changelog": "1.8.0",
    "istanbul": "0.4.5",
    "mocha": "5.2.0",
    "xml2js": "0.6.0"
  },
  "eslintConfig": {
    "env": {
      "es6": true,
      "node": true,
      "mocha": true
    },
    "extends": "eslint:recommended",
    "rules": {
      "indent": [
        2,
        2
      ],
      "linebreak-style": [
        2,
        "unix"
      ],
      "quotes": [
        2,
        "single"
      ],
      "semi": [
        2,
        "always"
      ]
    }
  }
}