forked from mailgun/mailgun-js-boland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "mailgun-js",
"description": "Simple Node.js helper module for Mailgun API",
"keywords": [
"email",
"mailgun"
],
"version": "0.7.13",
"homepage": "https://github.com/bojand/mailgun-js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bojand/mailgun-js.git"
},
"bugs": {
"url": "http://github.com/bojand/mailgun-js/issues"
},
"engines": {
"node": ">= 0.8.0"
},
"main": "./lib/mailgun.js",
"dependencies": {
"async": "~2.1.2",
"form-data": "~2.1.1",
"inflection": "~1.10.0",
"path-proxy": "~1.0.0",
"proxy-agent": "~2.0.0",
"q": "~1.4.0",
"tsscmp": "~1.0.0",
"debug": "~2.2.0"
},
"author": {
"name": "Bojan Djurkovic <bojan@onelobby.com>"
},
"devDependencies": {
"clone": "~1.0.0",
"mailcomposer": "~2.1.0",
"mocha": "~3.0.2",
"request": "^2.67.0"
},
"scripts": {
"test": "mocha",
"docs:api": "./bin/docs",
"docs:clean": "rm -rf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:api && npm run docs:prepare && npm run docs:clean && gitbook build",
"docs:watch": "npm run docs:api && npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push https://github.com/bojand/mailgun-js.git gh-pages --force"
}
}