-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.82 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
{
"name": "aws-mjml-csv",
"version": "1.0.2",
"description": "CLI and programatic API to send emails using MJML (that is then parsed by Handlebars.js), populating your email passing the CSV columns to your template",
"main": "index.js",
"bin": {
"aws-mjml-csv": "./bin/aws-mjml-csv"
},
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"prepublishOnly": "tsc -p tsconfig.json",
"coverage": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pocesar/node-aws-mjml-csv.git"
},
"keywords": [
"aws",
"ses",
"amazon",
"email",
"command line",
"cli",
"csv",
"mjml",
"handlebars",
"template",
"mailer"
],
"author": "Paulo Cesar",
"license": "MIT",
"bugs": {
"url": "https://github.com/pocesar/node-aws-mjml-csv/issues"
},
"homepage": "https://github.com/pocesar/node-aws-mjml-csv#readme",
"dependencies": {
"@types/node": "^9.3.0",
"@types/through2": "^2.0.33",
"aws-sdk": "^2.181.0",
"csv-parser": "^1.12.0",
"handlebars": "^4.0.11",
"limiter": "^1.1.2",
"mjml": "^3.3.5",
"through2": "^2.0.3",
"yargs": "^10.1.1"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/handlebars": "^4.0.36",
"@types/mocha": "^2.2.46",
"@types/yargs": "^10.0.1",
"aws-sdk-mock": "^1.7.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"source-map-support": "^0.5.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"engines": {
"node": ">=6.0.0"
},
"nyc": {
"include": [
"index.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"lcov",
"html"
],
"sourceMap": true,
"instrument": true
}
}