UNPKG

1.94 kBJSONView Raw
1{
2 "name": "netlify-lambda",
3 "version": "2.0.0",
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 "version": "auto-changelog -p --template keepachangelog && git add .",
16 "prepublishOnly": "git push && git push --tags && gh-release"
17 },
18 "files": [
19 "lib/*.js",
20 "!lib/*.spec.js",
21 "bin/*.js"
22 ],
23 "author": "Mathias Biilmann Christensen",
24 "license": "MIT",
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/netlify/netlify-lambda.git"
28 },
29 "bugs": {
30 "url": "https://github.com/netlify/netlify-lambda/issues"
31 },
32 "dependencies": {
33 "@babel/core": "^7.10.4",
34 "@babel/plugin-proposal-class-properties": "^7.10.4",
35 "@babel/plugin-proposal-object-rest-spread": "^7.10.4",
36 "@babel/plugin-transform-object-assign": "^7.10.4",
37 "@babel/preset-env": "^7.10.4",
38 "babel-loader": "^8.1.0",
39 "body-parser": "^1.19.0",
40 "commander": "^5.1.0",
41 "express": "^4.17.1",
42 "express-logging": "^1.1.1",
43 "globby": "^11.0.1",
44 "jwt-decode": "^2.2.0",
45 "toml": "^3.0.0",
46 "webpack": "^4.43.0",
47 "webpack-merge": "^5.0.9"
48 },
49 "devDependencies": {
50 "@commitlint/cli": "^9.0.0",
51 "@commitlint/config-conventional": "^9.0.0",
52 "auto-changelog": "^2.2.0",
53 "eslint": "^7.0.0",
54 "gh-release": "^3.5.0",
55 "husky": "^4.0.7",
56 "jest": "^26.1.0",
57 "node-fetch": "^2.6.0",
58 "prettier": "^2.0.0",
59 "rimraf": "^3.0.2"
60 },
61 "engines": {
62 "node": ">=v10.21.0"
63 },
64 "husky": {
65 "hooks": {
66 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
67 }
68 }
69}