UNPKG

netlify-lambda

Version:

Build and serve lambda function with webpack compilation

68 lines (67 loc) 1.79 kB
{ "name": "netlify-lambda", "version": "2.0.16", "description": "Build and serve lambda function with webpack compilation", "homepage": "https://github.com/netlify/netlify-lambda#readme", "main": "bin/cmd.js", "bin": { "netlify-lambda": "bin/cmd.js" }, "scripts": { "lint": "eslint 'lib/**/*.js' 'bin/**/*.js'", "format": "prettier --write 'lib/**/*.js' 'bin/**/*.js'", "format:ci": "prettier --check 'lib/**/*.js' 'bin/**/*.js'", "test": "jest" }, "files": [ "lib/*.js", "!lib/*.spec.js", "bin/*.js" ], "author": "Mathias Biilmann Christensen", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/netlify/netlify-lambda.git" }, "bugs": { "url": "https://github.com/netlify/netlify-lambda/issues" }, "dependencies": { "@babel/core": "^7.10.4", "@babel/plugin-proposal-class-properties": "^7.10.4", "@babel/plugin-proposal-object-rest-spread": "^7.10.4", "@babel/plugin-transform-object-assign": "^7.10.4", "@babel/preset-env": "^7.10.4", "babel-loader": "^8.1.0", "body-parser": "^1.19.0", "commander": "^9.0.0", "express": "^4.17.1", "express-logging": "^1.1.1", "find-up": "^5.0.0", "globby": "^11.0.1", "jwt-decode": "^3.0.0", "toml": "^3.0.0", "webpack": "^4.43.0", "webpack-merge": "^4.2.2" }, "devDependencies": { "@commitlint/cli": "^16.0.0", "@commitlint/config-conventional": "^16.0.0", "eslint": "^7.0.0", "husky": "^4.0.7", "jest": "^27.0.0", "node-fetch": "^2.6.0", "prettier": "^2.0.0", "rimraf": "^3.0.2", "tempy": "^1.0.0" }, "engines": { "node": ">=v10.22.1" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } } }