-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 KB
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
{
"name": "revolutionuc-emails",
"version": "3.0.0",
"description": "Transactional and marketing email templates and builder for RevolutionUC",
"main": "./index.js",
"scripts": {
"build": "node ./bin/build.js",
"start": "node ./server.js",
"develop:build": "nodemon --watch templates -e nj,njk --exec \"npm run build\"",
"develop:start": "node ./server.js",
"develop": "concurrently \"npm run develop:build\" \"npm run develop:start\"",
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/nyc report ./node_modules/.bin/_mocha",
"testEmail": "node ./bin/testEmail.js"
},
"engines": {
"node": ">=16.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/revolutionuc/revolutionuc-emails.git"
},
"types": "./lib/main.d.ts",
"keywords": [
"revolutionuc",
"email",
"template"
],
"author": "noahbass",
"license": "MIT",
"bugs": {
"url": "https://github.com/revolutionuc/revolutionuc-emails/issues"
},
"homepage": "https://github.com/revolutionuc/revolutionuc-emails#readme",
"dependencies": {
"body-parser": "^1.20.0",
"ejs": "^3.1.8",
"express": "^4.18.1",
"form-data": "^4.0.0",
"fs-extra": "^10.1.0",
"heml": "^1.1.3",
"html-minifier": "^4.0.0",
"html-to-text": "^8.2.1",
"mailgun.js": "^8.0.1",
"nunjucks": "^3.2.3",
"sass": "^1.55.0",
"gulp": "^4.0.2"
},
"devDependencies": {
"chai": "^4.3.6",
"concurrently": "^7.4.0",
"dotenv": "^16.0.2",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"through2": "^2.0.3"
}
}