UNPKG

1.88 kBJSONView Raw
1{
2 "name": "netlify-lambda",
3 "version": "2.0.8",
4 "description": "Build and serve lambda function with webpack compilation",
5 "homepage": "https://github.com/netlify/netlify-lambda#readme",
6 "main": "bin/cmd.js",
7 "bin": {
8 "netlify-lambda": "bin/cmd.js"
9 },
10 "scripts": {
11 "lint": "eslint 'lib/**/*.js' 'bin/**/*.js'",
12 "format": "prettier --write 'lib/**/*.js' 'bin/**/*.js'",
13 "format:ci": "prettier --check 'lib/**/*.js' 'bin/**/*.js'",
14 "test": "jest",
15 "prepublishOnly": "npm ci && run-s lint format:ci test"
16 },
17 "files": [
18 "lib/*.js",
19 "!lib/*.spec.js",
20 "bin/*.js"
21 ],
22 "author": "Mathias Biilmann Christensen",
23 "license": "MIT",
24 "repository": {
25 "type": "git",
26 "url": "git+https://github.com/netlify/netlify-lambda.git"
27 },
28 "bugs": {
29 "url": "https://github.com/netlify/netlify-lambda/issues"
30 },
31 "dependencies": {
32 "@babel/core": "^7.10.4",
33 "@babel/plugin-proposal-class-properties": "^7.10.4",
34 "@babel/plugin-proposal-object-rest-spread": "^7.10.4",
35 "@babel/plugin-transform-object-assign": "^7.10.4",
36 "@babel/preset-env": "^7.10.4",
37 "babel-loader": "^8.1.0",
38 "body-parser": "^1.19.0",
39 "commander": "^5.1.0",
40 "express": "^4.17.1",
41 "express-logging": "^1.1.1",
42 "find-up": "^5.0.0",
43 "globby": "^11.0.1",
44 "jwt-decode": "^3.0.0",
45 "toml": "^3.0.0",
46 "webpack": "^4.43.0",
47 "webpack-merge": "^4.2.2"
48 },
49 "devDependencies": {
50 "@commitlint/cli": "^12.0.0",
51 "@commitlint/config-conventional": "^12.0.0",
52 "eslint": "^7.0.0",
53 "husky": "^4.0.7",
54 "jest": "^27.0.0",
55 "node-fetch": "^2.6.0",
56 "npm-run-all": "^4.1.5",
57 "prettier": "^2.0.0",
58 "rimraf": "^3.0.2",
59 "tempy": "^1.0.0"
60 },
61 "engines": {
62 "node": ">=v10.22.1"
63 },
64 "husky": {
65 "hooks": {
66 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
67 }
68 }
69}