forked from mailgun/mailgun.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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": "mailgun.js",
"version": "2.0.1",
"main": "index.js",
"author": "Mailgun",
"license": "MIT",
"keywords": [
"mailgun",
"email"
],
"repository": {
"type": "git",
"url": "git://github.com/mailgun/mailgun-js.git"
},
"bugs": {
"url": "https://github.com/mailgun/mailgun-js/issues"
},
"homepage": "https://github.com/mailgun/mailgun-js#readme",
"scripts": {
"build": "webpack --config ./webpack.config.js --progress --colors",
"start": "webpack --config ./webpack.config.js --progress --colors --watch",
"release": "webpack --config ./webpack.release.config.js --progress --colors",
"test": "multi='dot=- xunit=./results.xml' mocha --compilers js:babel/register -t 10000 -R mocha-multi",
"test-watch": "mocha --compilers js:babel/register -w -R dot",
"preversion": "npm test",
"version": "npm run release && git add -A dist",
"postversion": "git push && git push --tags && rm -rf build"
},
"dependencies": {
"btoa": "^1.1.2",
"es6-promise": "^3.0.2",
"lodash.defaults": "^3.1.2",
"lodash.indexby": "^3.1.1",
"lodash.last": "^3.0.0",
"lodash.map": "^3.1.4",
"lodash.merge": "^3.3.2",
"lodash.partialright": "^3.1.1",
"popsicle": "^1.1.1",
"popsicle-status": "^0.2.0",
"url-join": "0.0.1"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-loader": "^5.3.2",
"exports-loader": "^0.6.2",
"expose-loader": "^0.7.0",
"imports-loader": "^0.6.4",
"jscs-loader": "^0.2.0",
"json-loader": "^0.5.2",
"mocha": "^2.2.3",
"mocha-multi": "^0.7.1",
"nock": "^0.48.1",
"raw-loader": "^0.5.1",
"should": "^4.1.0",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.11.0",
"xmlbuilder": "^2.6.2"
},
"contributors": [
{
"name": "Brad Gignac",
"url": "https://github.com/bradgignac"
},
{
"name": "Eddy Hernandez",
"url": "https://github.com/eddywashere"
}
]
}