-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
67 lines (67 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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"
}
}
}