Prefinem/lambdify

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "author": {
    "email": "prefinem@gmail.com",
    "name": "Prefinem",
    "url": "https://prefinem.com"
  },
  "dependencies": {
    "binary-case": "^1.1.4",
    "cookie": "^0.5.0",
    "path-to-regexp": "^6.2.0"
  },
  "description": "Lambdify is a set of tools that makes building and consuming AWS Lambda functions easier",
  "devDependencies": {
    "eslint": "8.51.0",
    "eslint-config-prettier": "9.0.0",
    "eslint-plugin-jest": "27.4.2",
    "express": "4.18.2",
    "husky": "8.0.3",
    "jest": "29.7.0",
    "lint-staged": "14.0.1",
    "prettier": "3.0.3"
  },
  "engines": {
    "node": ">=8.10"
  },
  "files": [
    "lib/",
    "helpers/",
    "router/",
    "server/"
  ],
  "homepage": "https://github.com/Prefinem/lambdify",
  "husky": {
    "hooks": {
      "pre-commit": "yarn staged"
    }
  },
  "license": "MIT",
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "prettier --config ./.prettierrc.json --write"
    ]
  },
  "main": "index.js",
  "name": "lambdify",
  "scripts": {
    "canary": "npm publish --tag canary",
    "clean": "yarn lint && yarn prettify",
    "lint": "./node_modules/.bin/eslint '**/*.js' --fix",
    "prettify": "./node_modules/.bin/prettier --config ./.prettierrc.json --write '**/*.js'",
    "staged": "lint-staged",
    "test": "./node_modules/.bin/jest"
  },
  "version": "4.4.2"
}