generated from domdomegg/typescript-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"name": "aws-ses-v2-local",
"version": "2.4.1",
"description": "A local version of Amazon Simple Email Service (AWS SES) supporting the V2 API",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/aws-ses-v2-local.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"aws-ses-v2-local": "dist/cli.js"
},
"files": [
"dist",
"static",
"branding"
],
"scripts": {
"start": "npm run build && node dist/cli.js",
"test": "jest --runInBand",
"test:watch": "npm run test -- --watch",
"lint": "eslint src test --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src test --ext .js,.jsx,.ts,.tsx --fix",
"clean": "rm -rf dist",
"build": "tsc",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@aws-sdk/client-ses": "^3.204.0",
"@aws-sdk/client-sesv2": "^3.204.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.2",
"@types/json-schema": "^7.0.11",
"@types/mailparser": "^3.4.0",
"@types/nodemailer": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"axios": "^1.1.3",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"globalSetup": "./test/test-global-setup.ts",
"globalTeardown": "./test/test-global-teardown.ts",
"setupFilesAfterEnv": [
"./test/test-env-setup.ts"
]
},
"dependencies": {
"ajv": "^8.11.0",
"express": "^4.18.2",
"mailparser": "^3.5.0",
"nodemailer": "^6.8.0",
"yargs": "^17.6.0"
}
}