UNPKG

2.36 kBJSONView Raw
1{
2 "name": "postmark",
3 "description": "Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com",
4 "license": "MIT",
5 "tags": [
6 "email",
7 "utility",
8 "postmark",
9 "sending",
10 "transactional"
11 ],
12 "version": "3.0.12",
13 "author": "Igor Balos",
14 "contributors": [
15 "Igor Balos",
16 "Andrew Theken",
17 "Aaron Blum",
18 "Aleksey Aleksandrov",
19 "Alex Shepard",
20 "Antony Jones",
21 "Ben Burwell",
22 "Ben Williamson",
23 "Chris Williams",
24 "Jakub Borys",
25 "Mark Nguyen",
26 "Matt",
27 "Matthew Blackshaw",
28 "Matthew Conlen",
29 "Ryan Kirkman",
30 "Scott Anderson",
31 "Sebastien Chopin",
32 "Theophane RUPIN",
33 "codesplicer",
34 "francescoRubini"
35 ],
36 "main": "./dist/index.js",
37 "types": "./dist/index.d.ts",
38 "directories": {
39 "lib": "./dist/index.js"
40 },
41 "scripts": {
42 "compile": "rm -r -f ./dist && node_modules/.bin/tsc",
43 "test": "node_modules/mocha/bin/mocha --timeout 30000 --retries 1 -r ts-node/register test/**/*test.ts",
44 "unittest": "node_modules/mocha/bin/mocha --timeout 30000 --retries 1 -r ts-node/register test/unit/**/*test.ts",
45 "watchtests": "node_modules/.bin/mocha --timeout 30000 --retries 1 -r ts-node/register -R list -w --recursive -G test/**/*test.ts",
46 "lint": "tslint -c tslint.json 'src/**/*.ts'",
47 "lintfix": "tslint -c tslint.json 'src/**/*.ts' --fix",
48 "compile-docs": "echo 'Generating docs...' && mkdir -p ./docs && rm -r ./docs && node_modules/.bin/typedoc --options typedoc.json && git add -A ./docs && echo 'Generated docs!'"
49 },
50 "homepage": "http://ActiveCampaign.github.io/postmark.js",
51 "repository": {
52 "type": "git",
53 "url": "https://github.com/ActiveCampaign/postmark.js.git"
54 },
55 "bugs": {
56 "url": "https://github.com/ActiveCampaign/postmark.js/issues"
57 },
58 "precommit": [
59 "compile",
60 "lint",
61 "test",
62 "compile-docs"
63 ],
64 "devDependencies": {
65 "@types/chai": "^4.1.4",
66 "@types/mocha": "^5.2.5",
67 "@types/nconf": "0.0.37",
68 "@types/node": "^4.0.29",
69 "@types/sinon": "^7.5.0",
70 "chai": "^4.1.2",
71 "mocha": "^5.2.0",
72 "nconf": "^0.10.0",
73 "pre-commit": "1.2.2",
74 "sinon": "^7.5.0",
75 "ts-node": "^7.0.1",
76 "tslint": "^6.1.3",
77 "typedoc": "^0.22.11",
78 "typescript": "4.5.5"
79 },
80 "dependencies": {
81 "axios": "^0.25.0"
82 }
83}