-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.22 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
{
"name": "@maizzle/cli",
"version": "1.5.9",
"description": "CLI tool for the Maizzle Email Framework",
"license": "MIT",
"main": "bin/maizzle",
"bin": {
"maizzle": "bin/maizzle"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "c8 ava",
"pretest": "xo",
"release": "np"
},
"files": [
"src/**/*",
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/maizzle/cli.git"
},
"bugs": "https://github.com/maizzle/cli/issues",
"homepage": "https://maizzle.com",
"author": "Cosmin Popovici (https://github.com/cossssmin)",
"keywords": [
"maizzle",
"tailwindcss",
"responsive-email",
"email-framework",
"email-template",
"email-marketing",
"email-campaigns",
"email-newsletter",
"email-boilerplate",
"html-emails",
"email-cli"
],
"dependencies": {
"chalk": "^4.1.0",
"commander": "^11.0.0",
"execa": "^5.0.0",
"fs-extra": "^11.2.0",
"import-cwd": "^3.0.0",
"inquirer": "^8.0.0",
"np": "*",
"ora": "^5.1.0",
"resolve-cwd": "^3.0.0"
},
"devDependencies": {
"ava": "^5.2.0",
"c8": "^9.1.0",
"xo": "^0.53.1"
},
"engines": {
"node": ">=14.0.0"
}
}