UNPKG

2.35 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.7.0",
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 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://wildbit.github.io/postmark.js",
51 "repository": {
52 "type": "git",
53 "url": "https://github.com/wildbit/postmark.js.git"
54 },
55 "bugs": {
56 "url": "https://github.com/wildbit/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/request": "^2.47.1",
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": "^5.12.0",
77 "typedoc": "^0.15.0",
78 "typescript": "^2.9.2"
79 },
80 "dependencies": {
81 "axios": "^0.21.1"
82 }
83}