-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "serverless-esm-layer",
"version": "1.2.0",
"description": "A serverless plugin that will fix the problem of AWS-Layers not working with ES Modules (ESM .mjs)",
"engines": {
"node": ">=14.x"
},
"repository": {
"type": "git",
"url": "https://github.com/luisdemarchi/serverless-esm-layer.git"
},
"issue": "https://github.com/luisdemarchi/serverless-esm-layer/issues",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postversion": "git commit -m \"Bump package version to $npm_package_version\" package.json; git flow release start $npm_package_version; git flow release finish -m $npm_package_version $npm_package_version; git checkout develop; git merge master"
},
"keywords": [
"serverless",
"aws-layer",
"aws-lambda",
"esm",
"es-modules"
],
"author": "Luís De Marchi <[email protected]>",
"license": "BSD-3-Clause-Clear",
"publishConfig": {
"access": "public"
},
"dependencies": {
"archiver": "5.3.1",
"lnk": "^1.1.0",
"zip-lib": "0.7.3"
},
"devDependencies": {
"@hughescr/eslint-config-default": "2.8.7",
"eslint": "7.27.0"
},
"pnpm": {
"overrides": {
"graceful-fs": "4.2.10"
}
}
}