ahmadnassri/httpsnippet

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "version": "3.0.1",
  "name": "httpsnippet",
  "description": "HTTP Request snippet generator for *most* languages",
  "author": "Kong <office@konghq.com>",
  "homepage": "https://github.com/Kong/httpsnippet",
  "license": "MIT",
  "main": "dist/httpsnippet.js",
  "types": "dist/httpsnippet.d.ts",
  "bin": "bin/httpsnippet",
  "keywords": [
    "api",
    "clojure",
    "csharp",
    "curl",
    "go",
    "har",
    "http",
    "httpie",
    "httr",
    "java",
    "javascript",
    "jquery",
    "kotlin",
    "objc",
    "objective-c",
    "ocaml",
    "php",
    "python",
    "request",
    "requests",
    "ruby",
    "shell",
    "snippet",
    "swift",
    "swift",
    "unirest",
    "xhr",
    "xmlhttprequest"
  ],
  "engines": {
    "node": "^14.19.1 || ^16.14.2 || ^18.0.0 || ^20.0.0"
  },
  "repository": "Kong/httpsnippet",
  "bugs": {
    "url": "https://github.com/Kong/httpsnippet/issues"
  },
  "scripts": {
    "clean": "tsc --build tsconfig.build.json --clean",
    "prebuild": "npm run clean",
    "lint": "npm run lint:prettify && npm run lint:code && npm run lint:markdown",
    "lint:prettify": "prettier --write .",
    "lint:code": "eslint . --ext ts,d.ts,test.ts --fix",
    "lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#**/node_modules\"",
    "build": "tsc --build tsconfig.build.json",
    "build:types": "tsc -d --declarationDir dist/lib --declarationMap --emitDeclarationOnly",
    "test": "jest"
  },
  "devDependencies": {
    "@types/eslint": "^8.4.1",
    "@types/event-stream": "^4.0.0",
    "@types/har-format": "^1.2.8",
    "@types/jest": "^27.4.1",
    "@types/node": "^16.11.26",
    "@types/stringify-object": "^3.3.0",
    "@types/yargs": "^17.0.10",
    "@typescript-eslint/eslint-plugin": "^5.17.0",
    "@typescript-eslint/parser": "^5.17.0",
    "eslint": "^8.12.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-jest": "^26.1.3",
    "eslint-plugin-jest-formatting": "^3.1.0",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "markdownlint-cli2": "^0.5.1",
    "jest": "^27.5.1",
    "prettier": "^2.6.2",
    "ts-jest": "^27.1.4",
    "type-fest": "^2.12.2",
    "typescript": "^4.6.3"
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "event-stream": "4.0.1",
    "form-data": "4.0.0",
    "har-schema": "^2.0.0",
    "stringify-object": "3.3.0",
    "yargs": "^17.4.0"
  }
}