forked from makenew/benthos-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "@makenew/benthos-plugin",
"version": "4.1.0",
"description": "Project skeleton for a Benthos plugin.",
"private": true,
"type": "module",
"main": "index.js",
"module": "index.js",
"sideEffects": false,
"keywords": [
"benthos"
],
"homepage": "https://github.com/makenew/benthos-plugin",
"bugs": "https://github.com/makenew/benthos-plugin/issues",
"repository": "makenew/benthos-plugin",
"license": "MIT",
"author": {
"name": "Evan Sosenko",
"email": "[email protected]"
},
"files": [
"package-lock.json",
"config",
"index.js"
],
"scripts": {
"test": "./tmp/bin/benthos test config/...",
"lint": "prettier --check --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yaml|yml)'",
"build": "blobpack",
"prebuild": "del dist",
"preversion": "npm-run-all --parallel lint test --serial build sls:package",
"postversion": "git push --follow-tags",
"sls:package": "serverless package",
"sls:invoke": "serverless invoke local -f",
"deploy": "serverless deploy --aws-s3-accelerate --stage=$SERVERLESS_STAGE",
"format": "prettier --write --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yaml|yml)'"
},
"blobpack": {
"name": "benthos-lambda-al2",
"platform": "linux_arm64",
"artifacts": [
"todo"
]
},
"engines": {
"node": ">=16.13.0",
"npm": ">= 8.1.0"
},
"devDependencies": {
"blobpack": "^1.2.0",
"del-cli": "^5.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^2.3.2",
"serverless": "^3.17.0"
}
}