MadKudu/node-eloqua

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "eloqua",
  "version": "1.3.7",
  "description": "A node wrapper for the Eloqua API",
  "repository": {
    "type": "git",
    "url": "git://github.com/MadKudu/node-eloqua.git"
  },
  "keywords": [
    "eloqua"
  ],
  "author": {
    "name": "Paul Cothenet",
    "url": "https://github.com/pcothenet/"
  },
  "license": "MIT",
  "main": "./dist/client.js",
  "types": "./dist/client.d.ts",
  "files": [
    "dist/**/*"
  ],
  "engines": {
    "node": ">=16.18.0",
    "npm": ">=8.19.2"
  },
  "scripts": {
    "postinstall": "",
    "test": "npm run lint && npm run coverage:clean && npm run mocha",
    "coverage:clean": "shx rm -rf ./.nyc_output/ ./coverage/",
    "mocha": "nyc mocha test/*.spec.ts",
    "lint": "eslint 'lib/**/*.ts' 'test/**/*.ts'  --fix",
    "format:check": "prettier --check .",
    "format": "prettier --write .",
    "build": "npm run build:clean && tsc",
    "build:clean": "shx rm -rf ./dist",
    "prepare": "husky install"
  },
  "lint-staged": {
    "*.{ts,json,md,yaml,yml}": "prettier --write",
    "*.ts": "eslint --fix"
  },
  "dependencies": {
    "axios": "^1.6.3",
    "debug": "^4.3.4",
    "lodash": "^4.17.21"
  },
  "devDependencies": {
    "@types/chai": "^4.3.3",
    "@types/debug": "^4.1.7",
    "@types/lodash": "^4.14.182",
    "@types/mocha": "^10.0.0",
    "@types/node": "^16.18.3",
    "@typescript-eslint/eslint-plugin": "^5.43.0",
    "@typescript-eslint/parser": "^5.43.0",
    "chai": "^4.3.6",
    "dotenv": "^16.0.3",
    "eslint": "^8.27.0",
    "eslint-config-prettier": "^8.5.0",
    "husky": "^8.0.2",
    "lint-staged": "^13.0.3",
    "mocha": "^10.1.0",
    "nyc": "^15.1.0",
    "prettier": "2.7.1",
    "shx": "^0.3.4",
    "ts-node": "^10.9.1",
    "typescript": "^4.8.4"
  }
}