forked from netlify/netlify-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "netlify-lambda",
"version": "1.6.1",
"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": {
"test": "jest",
"version": "auto-changelog -p --template keepachangelog && git add .",
"prepublishOnly": "git push && git push --tags && gh-release"
},
"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.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"body-parser": "^1.18.3",
"commander": "^2.17.1",
"express": "^4.16.3",
"express-logging": "^1.1.1",
"globby": "^10.0.1",
"jwt-decode": "^2.2.0",
"toml": "^2.3.3",
"webpack": "^4.17.1",
"webpack-merge": "^4.1.4"
},
"devDependencies": {
"auto-changelog": "^1.13.0",
"gh-release": "^3.5.0",
"jest": "^23.6.0"
}
}