-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.2 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@suin/google-cloud-functions-sendgrid-inbound-parse",
"version": "0.0.0-development",
"private": true,
"description": "The backend of SendGrid Inbound Parse that runs on a Google Cloud Functions",
"keywords": [
"sendgrid",
"sendgrid inbound parse",
"serverless",
"serverless application",
"google cloud functions",
"email automation",
"emailhook",
"webhook"
],
"homepage": "https://github.com/suin/google-cloud-functions-sendgrid-inbound-parse#readme",
"bugs": {
"url": "https://github.com/suin/google-cloud-functions-sendgrid-inbound-parse/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/suin/google-cloud-functions-sendgrid-inbound-parse.git"
},
"license": "MIT",
"author": "suin <suinyeze@gmail.com>",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "git clean -Xdf -e '!/.idea/**' -e '!/node_modules' -e '!/node_modules/**'",
"clean:dry": "git clean -Xdfn -e '!/.idea/**' -e '!/node_modules' -e '!/node_modules/**'",
"format": "yarn prettier --write",
"format:check": "yarn prettier --check",
"gcp-build": "tsc",
"prettier": "prettier '**/*.{ts,tsx,json,json5,css,scss,graphql,gql,md,mdx,html,vue,yaml}'",
"reset": "git clean -Xdf -e '!/.idea/**'",
"reset:dry": "git clean -Xdfn -e '!/.idea/**'",
"semantic-release": "semantic-release",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,json5,css,scss,graphql,gql,md,mdx,html,vue,yaml}": "prettier --write",
"./package.json": "sort-package-json"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"@google-cloud/pubsub": "^2.2.0",
"@suin/email-data": "^1.0.0",
"@suin/event-data": "^1.0.0",
"busboy": "^0.3.1",
"mailparser": "^2.7.7",
"zod": "^1.10.0"
},
"devDependencies": {
"@google-cloud/functions-framework": "^1.6.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/busboy": "^0.2.3",
"@types/express": "^4.17.7",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.5",
"@types/mailparser": "^2.7.3",
"@types/node": "^14.0.24",
"@types/nodemailer": "^6.4.0",
"form-data": "^3.0.0",
"husky": ">=4",
"jest": "^26.1.0",
"lint-staged": ">=10",
"mock-express-request": "^0.2.2",
"mock-express-response": "^0.2.2",
"nodemailer": "^6.4.10",
"prettier": "^2.0",
"semantic-release": "^17.1.1",
"sort-package-json": "^1.44.0",
"ts-jest": "^26.1.3",
"typescript": "^3.9"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
]
}
]
]
}
}