UNPKG

2.48 kBJSONView Raw
1{
2 "name": "postmark",
3 "description": "Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com",
4 "license": "MITNFA",
5 "tags": [
6 "email",
7 "utility",
8 "postmark",
9 "sending",
10 "transactional"
11 ],
12 "version": "2.5.4",
13 "author": "Igor Balos",
14 "contributors": [
15 "Aaron Blum",
16 "Aleksey Aleksandrov",
17 "Alex Shepard",
18 "Andrew Theken",
19 "Antony Jones",
20 "Ben Burwell",
21 "Ben Williamson",
22 "Chris Williams",
23 "Igor Balos",
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 10000 --retries 1 -r ts-node/register test/**/*test.ts",
44 "unittest": "node_modules/mocha/bin/mocha --timeout 10000 --retries 1 -r ts-node/register test/unit/**/*test.ts",
45 "watchtests": "node_modules/.bin/mocha --timeout 10000 --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 "pull-docs": "git subtree pull --prefix docs origin gh-pages",
50 "push-docs": "git subtree push --prefix docs origin gh-pages"
51 },
52 "homepage": "http://wildbit.github.io/postmark.js",
53 "repository": {
54 "type": "git",
55 "url": "https://github.com/wildbit/postmark.js.git"
56 },
57 "bugs": {
58 "url": "https://github.com/wildbit/postmark.js/issues"
59 },
60 "precommit": [
61 "compile",
62 "lint",
63 "test",
64 "compile-docs"
65 ],
66 "devDependencies": {
67 "@types/chai": "^4.1.4",
68 "@types/mocha": "^5.2.5",
69 "@types/nconf": "0.0.37",
70 "@types/request": "^2.47.1",
71 "@types/sinon": "^7.5.0",
72 "chai": "^4.1.2",
73 "mocha": "^5.2.0",
74 "nconf": "^0.10.0",
75 "pre-commit": "1.2.2",
76 "sinon": "^7.5.0",
77 "ts-node": "^7.0.1",
78 "tslint": "^5.12.0",
79 "typedoc": "^0.15.0",
80 "typescript": "^2.9.2"
81 },
82 "dependencies": {
83 "axios": "^0.19.2"
84 }
85}