-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
95 lines (95 loc) · 2.74 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
91
92
93
94
95
{
"name": "postmark-cli",
"version": "1.6.19",
"description": "A CLI tool for managing templates, sending emails, and fetching servers on Postmark.",
"main": "./dist/index.js",
"dependencies": {
"@inquirer/prompts": "^3.0.2",
"chalk": "^2.4.2",
"consolidate": "^1.0.0",
"debug": "^4.3.4",
"directory-tree": "^2.2.3",
"ejs": "^3.1.7",
"express": "^4.17.1",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"ora": "^5.4.1",
"postmark": "^4",
"socket.io": "^4",
"table": "^6.8.0",
"traverse": "^0.6.6",
"ts-invariant": "^0.10.3",
"untildify": "^4.0.0",
"watch": "^0.13.0",
"yargonaut": "^1.1.4",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/consolidate": "^0.14.0",
"@types/execa": "^0.9.0",
"@types/express": "^4.17.0",
"@types/fs-extra": "^5.0.5",
"@types/lodash": "^4.14.123",
"@types/mocha": "^9.1.0",
"@types/nconf": "^0.10.0",
"@types/sinon": "^10.0.16",
"@types/table": "^4.0.5",
"@types/traverse": "^0.6.32",
"@types/watch": "^1.0.1",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chai": "^4.1.2",
"concurrently": "^8.2.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^1.0.0",
"mocha": "^9.1.4",
"nconf": "^0.11.4",
"pre-commit": "^1.2.2",
"prettier": "^3.2.4",
"sinon": "^17",
"ts-node": "^8.0.3",
"typescript": "^4.5.5"
},
"scripts": {
"start:dev": "watch 'npm run build' ./src ./preview",
"build": "npm run clean && npm run ts && npm run syncPreview && npm run permissions",
"test": "npm run lint && npm run build && npm run test:unit && npm run test:integration",
"test:unit": "mocha --config .mocharc.unit.json",
"test:integration": "mocha --config .mocharc.integration.json",
"clean": "rm -r -f ./dist",
"syncPreview": "cp -R ./preview ./dist/commands/templates/preview",
"ts": "node_modules/.bin/tsc",
"permissions": "chmod +x ./dist/index.js",
"prepublish": "npm run build",
"lint:js": "eslint --ext .ts ./src",
"lint:prettier": "prettier --check .",
"lint": "concurrently \"npm run lint:js\" \"npm run lint:prettier\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/activecampaign/postmark-cli.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/activecampaign/postmark-cli/issues"
},
"homepage": "https://github.com/activecampaign/postmark-cli#readme",
"bin": {
"postmark": "./dist/index.js"
},
"precommit": [
"build",
"lint"
],
"keywords": [
"postmark",
"cli",
"templates",
"email",
"transactional"
]
}