-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.16 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": "simple-java-mail",
"version": "2.0.0",
"description": "Simple Java Mail documentation and project website",
"private": true,
"scripts": {
"start": "npm run dev",
"build": "rimraf dist && concurrently --kill-others-on-fail \"eleventy --config=eleventy.config.mjs\" \"tsc -p tsconfig.json\" && pagefind --site dist",
"build:site": "eleventy --config=eleventy.config.mjs",
"build:scripts": "tsc -p tsconfig.json",
"build:search": "pagefind --site dist",
"dev": "rimraf dist && concurrently --kill-others \"eleventy --config=eleventy.config.mjs --serve\" \"tsc -p tsconfig.json --watch --preserveWatchOutput\"",
"dev:site": "eleventy --config=eleventy.config.mjs --serve",
"dev:scripts": "tsc -p tsconfig.json --watch --preserveWatchOutput",
"clean": "rimraf dist",
"check": "concurrently --kill-others-on-fail \"eleventy --config=eleventy.config.mjs --dryrun\" \"tsc -p tsconfig.json --noEmit\" \"node --test tests/eleventy-helpers.test.mjs\"",
"check:templates": "eleventy --config=eleventy.config.mjs --dryrun",
"check:scripts": "tsc -p tsconfig.json --noEmit",
"check:helpers": "node --test tests/eleventy-helpers.test.mjs",
"verifyLinks": "node scripts/verify-links.js all",
"verifyLinks:internal": "node scripts/verify-links.js internal",
"verifyLinks:external": "node scripts/verify-links.js external"
},
"contributors": [
"Benny Bottema <benny@bennybottema.com>"
],
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-plugin-handlebars": "^1.0.0",
"autoprefixer": "^10.5.4",
"concurrently": "^9.2.4",
"handlebars": "^4.7.9",
"less": "^4.9.0",
"pagefind": "^1.5.2",
"postcss": "^8.5.26",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"keywords": [
"email",
"smtp",
"jakarta mail",
"smtp",
"dkim",
"smime"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bbottema/simple-java-mail.git"
},
"bugs": {
"url": "https://github.com/bbottema/simple-java-mail/issues"
},
"homepage": "https://github.com/bbottema/simple-java-mail"
}