senecajs/request

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@seneca/request",
  "version": "0.4.1",
  "main": "dist/request.js",
  "type": "commonjs",
  "types": "dist/request.d.ts",
  "description": "Outbound Web Request Plugin for Seneca",
  "homepage": "https://github.com/senecajs/seneca-request",
  "keywords": [
    "seneca",
    "request"
  ],
  "author": "Richard Rodger - richardrodger.com",
  "repository": {
    "type": "git",
    "url": "git://github.com/senecajs/seneca-request.git"
  },
  "scripts": {
    "test": "jest --coverage",
    "test-some": "jest -t",
    "test-watch": "jest --coverage --watchAll",
    "watch": "tsc -w -d",
    "build": "tsc -d",
    "doc": "seneca-doc",
    "clean": "rm -rf node_modules yarn.lock package-lock.json",
    "reset": "npm run clean && npm i && npm test",
    "repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
    "repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
    "repo-publish-quick": "npm run build && npm run test && npm run doc && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org "
  },
  "license": "MIT",
  "files": [
    "dist",
    "src/**/*.ts",
    "LICENSE"
  ],
  "devDependencies": {
    "@seneca/doc": "^4.1.0",
    "@types/jest": "^29.2.6",
    "@types/node": "^18.11.18",
    "esbuild": "^0.17.3",
    "esbuild-jest": "^0.5.0",
    "jest": "^29.3.1",
    "seneca": ">=3",
    "seneca-msg-test": "^3.4.0",
    "seneca-promisify": ">=3",
    "serve": "^14.1.2",
    "typescript": "^4.9.4"
  },
  "peerDependencies": {
    "seneca": ">=3",
    "seneca-promisify": ">=3"
  },
  "dependencies": {
    "node-fetch": "^2.6.7"
  }
}