proux/rage4service

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "rage4service",
  "description": "Promise-based communication with Rage4 API",
  "main": "./lib/index.js",
  "files": [
    "lib"
  ],
  "scripts": {
    "compile": "coffee --compile --bare --no-header --output lib/ src/",
    "test": "coffeelint -r src test && jest",
    "prepublish": "npm run compile",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "keywords": [
    "rage4",
    "dns",
    "api"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/proux/rage4service.git"
  },
  "author": "Nico Lindemann <nico.lindemann@proux.net>",
  "license": "MIT",
  "dependencies": {
    "request-promise": "^4.2.4"
  },
  "devDependencies": {
    "@semantic-release/release-notes-generator": "^7.1.4",
    "babel-runtime": "^6.25.0",
    "codeclimate-test-reporter": "^0.5.1",
    "coffee-script": "^1.12.3",
    "coffeelint": "^2.0.3",
    "cz-conventional-changelog": "^2.0.0",
    "jest": "^22.1.4",
    "jest-coffee-preprocessor": "^1.0.0",
    "nock": "^10.0.6",
    "semantic-release": "^15.13.3"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "jest": {
    "verbose": true,
    "browser": true,
    "collectCoverage": true,
    "testURL": "http://localhost",
    "testMatch": [
      "**/?(*.)(spec|test).coffee"
    ],
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/.c9"
    ],
    "moduleFileExtensions": [
      "coffee",
      "litcoffee",
      "js"
    ],
    "transform": {
      "^.+\\.(coffee|litcoffee)$": "jest-coffee-preprocessor"
    }
  },
  "release": {
    "generateNotes": "./node_modules/@semantic-release/release-notes-generator/dist"
  }
}