-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "use-lambda-env",
"version": "1.2.0",
"description": "Run a process with environment variables from an AWS Lambda function",
"private": false,
"main": "lib/index.js",
"scripts": {
"build": "projen build",
"lint": "projen lint",
"lint:fix": "projen lint:fix",
"prepare": "husky install",
"tdd": "jest --watchAll --testPathIgnorePatterns cdk",
"test": "projen test",
"update-boilerplate": "projen update-boilerplate"
},
"repository": "https://github.com/joelcox22/use-lambda-env",
"keywords": [],
"author": "Joel Cox <joel@pinecodes.com>",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-lambda": "^3.18.0",
"cac": "^6.7.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^13.0.0",
"@joelcox22/boilerplate": "1.5.1",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^27.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"commitlint": "^13.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^5.0.0",
"git-cz": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.0.0",
"nock": "^13.1.0",
"prettier": "^2.0.0",
"semantic-release": "^17.0.0",
"ts-jest": "^27.0.0",
"ts-node": "^10.0.0",
"ts-standard": "^10.0.0",
"typescript": "^4.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
],
"@semantic-release/github"
]
},
"bin": {
"use-lambda-env": "lib/cli.js"
},
"files": [
"lib",
"README.md"
]
}