generated from PaleBluDot/e11ty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.21 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
{
"name": "@aclu-national/email-builder",
"version": "1.11.5",
"description": "Using 11ty to generate ACLU HTML email templates.",
"main": "dist/",
"author": "ACLU",
"license": "MIT",
"private": true,
"contributors": [
"Pavel Sanchez",
"Brennan Taylor",
"Stephen Demo",
"Ashley Burrous"
],
"keywords": [
"eleventy",
"HTML",
"email"
],
"bin": {
"email-builder": "./bin/cli.mjs",
"aclu-email-builder": "./bin/cli.mjs",
"aeb": "./bin/cli.mjs"
},
"scripts": {
"start": "npm run dev",
"dev": "eleventy --serve",
"web": "eleventy",
"clean": "rimraf dist/",
"pa11y": "pa11y ./dist",
"lint": "npm run pa11y",
"format": "npx prettier --write dist/**/*",
"commit": "git cz",
"test": "npx jest --watchAll",
"test:ci": "npx jest",
"qa": "npm-run-all clean --parallel lint test",
"build": "npm run clean && cross-env ELEVENTY_ENV=prod eleventy && ./bin/cli.mjs create",
"build:local": "npm run build && npm run format && npm run test:ci"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.config/commitizen.config.js"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "exec < /dev/tty && ./node_modules/.bin/cz --hook || true"
}
},
"lint-staged": {
"*.{html,md,json,js}": "npm run format"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.5",
"@aclu-national/email-builder": "file:./email-builder",
"clean-css-cli": "^5.3.3",
"commander": "^12.0.0",
"commitizen": "^4.2.4",
"commitlint": "^17.7.1",
"cross-env": "^7.0.3",
"cspell": "^5.10.1",
"cz-customizable": "^6.3.0",
"husky": "^7.0.1",
"inquirer": "^9.2.16",
"jest": "^29.7.0",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"pa11y": "^5.3.0",
"prettier": "^2.4.1",
"semantic-release": "^21.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aclu-national/email-builder.git"
},
"bugs": {
"url": "https://github.com/aclu-national/email-builder/issues"
},
"homepage": "https://github.com/aclu-national/email-builder#readme"
}