-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "postmark",
"description": "Ridiculously Simple Email Sending From Node.js For http://www.postmarkapp.com",
"tags": [
"email",
"utility",
"postmark"
],
"version": "1.0.0",
"author": "Chris Williams <[email protected]>",
"contributors": [
"Aaron Blum",
"Aleksey Aleksandrov",
"Alex Shepard",
"Andrew Theken",
"Antony Jones",
"Ben Burwell",
"Ben Williamson",
"Chris Williams",
"Jakub Borys",
"Mark Nguyen",
"Matt",
"Matthew Blackshaw",
"Matthew Conlen",
"Ryan Kirkman",
"Scott Anderson",
"Sebastien Chopin",
"Theophane RUPIN",
"codesplicer",
"francescoRubini"
],
"main": "./lib/postmark",
"directories": {
"lib": "./lib/postmark"
},
"scripts": {
"test": "node_modules/.bin/mocha tests/fixture_*.js",
"watchtests": "node_modules/.bin/mocha -R list -w --recursive -G tests/fixture_*.js",
"compile-docs": "echo 'Generating docs...' && mkdir -p ./docs && rm -r ./docs && node_modules/.bin/jsdoc -u ./tutorials -R README.md -c jsdoc.conf.json -t ./node_modules/ink-docstrap/template -d docs ./lib/postmark/*.js && cp ./tutorials/postmark-logo.png ./docs && git add -A ./docs && echo 'Generated docs!'",
"pull-docs": "git subtree pull --prefix docs origin gh-pages",
"push-docs": "git subtree push --prefix docs origin gh-pages"
},
"homepage": "http://wildbit.github.io/postmark.js",
"repository": {
"type": "git",
"url": "https://github.com/wildbit/postmark.js.git"
},
"bugs": {
"url": "https://github.com/wildbit/postmark.js/issues"
},
"engines": [
"node >=0.4.0"
],
"precommit": [
"compile-docs",
"test"
],
"devDependencies": {
"ink-docstrap": "git://github.com/wildbit/docstrap",
"jsdoc": "3.3.0-beta1",
"mocha": "2.1.0",
"nconf": "0.7.1",
"pre-commit": "1.0.2"
},
"dependencies": {
"git-rev": "0.2.1",
"merge": "1.2.0"
}
}