drdgvhbh/node-XMLHttpRequest

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "xmlhttprequest-w3c",
  "description": "W3C Compliant XMLHttpRequest for Node",
  "version": "1.8.2",
  "author": {
    "name": "Ryan Lee",
    "url": "https://github.com/drdgvhbh/node-XMLHttpRequest"
  },
  "keywords": [
    "xhr",
    "ajax"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git@github.com:drdgvhbh/node-XMLHttpRequest.git"
  },
  "browser": {
    "fs": false,
    "child_process": false
  },
  "bugs": "https://github.com/drdgvhbh/node-XMLHttpRequest/issues",
  "engines": {
    "node": ">=6"
  },
  "directories": {
    "lib": "./lib",
    "example": "./demo"
  },
  "main": "./lib/index.js",
  "devDependencies": {
    "@types/jest": "^24.0.23",
    "@types/node": "^12.12.16",
    "@types/request": "^2.48.3",
    "@typescript-eslint/eslint-plugin": "^2.11.0",
    "@typescript-eslint/parser": "^2.11.0",
    "eslint": "^6.7.2",
    "eslint-config-prettier": "^6.7.0",
    "eslint-plugin-prettier": "^3.1.1",
    "get-port": "^5.0.0",
    "jest": "^24.9.0",
    "nock": "^11.7.0",
    "prettier": "^1.19.1",
    "rimraf": "^3.0.0",
    "ts-jest": "^24.2.0",
    "typescript": "^3.7.3"
  },
  "scripts": {
    "prepublishOnly": "npm run clean && npm run build",
    "prepare": "npm run build",
    "clean": "rimraf lib",
    "build": "tsc",
    "lint": "eslint \"./**/*.{ts,js}\"",
    "lint:fix": "eslint --fix \"./**/*.{ts,js}\"",
    "test": "jest"
  },
  "dependencies": {
    "request": "^2.88.0"
  }
}