forked from mailgun/mailgun.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
70
71
72
73
74
75
76
77
78
{
"name": "@iwe/mailgun.js",
"version": "3.3.3",
"main": "dist/mailgun.js",
"types": "dist/index.d.ts",
"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 --color",
"start": "webpack --watch --config ./webpack.config.js --progress --color",
"release": "webpack --config ./webpack.release.config.js --progress --color",
"test": "multi='dot=- xunit=./results.xml' mocha -t 10000 -R mocha-multi -r ts-node/register test/*.test.ts",
"test-watch": "mocha -r ts-node/register -w -R dot test/*.test.ts",
"preversion": "npm test",
"version": "npm run release && git add -A dist",
"postversion": "git push && git push --tags && rm -rf build",
"docs": "typedoc --tsconfig ./tsconfig.json"
},
"dependencies": {
"bluebird": "^3.7.2",
"btoa": "^1.1.2",
"ky": "^0.25.1",
"ky-universal": "^0.8.2",
"url": "^0.11.0",
"url-join": "0.0.1",
"web-streams-polyfill": "^3.0.1",
"webpack-merge": "^5.4.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/btoa": "^1.2.3",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/url-join": "^4.0.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-tsdoc": "^0.2.10",
"form-data": "^3.0.0",
"json-loader": "^0.5.7",
"mocha": "^8.2.1",
"mocha-multi": "^1.1.3",
"nock": "^13.0.4",
"path-browserify": "^1.0.1",
"should": "^4.1.0",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"typedoc": "^0.19.2",
"typescript": "^4.1.3",
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0"
},
"contributors": [
{
"name": "Brad Gignac",
"url": "https://github.com/bradgignac"
},
{
"name": "Eddy Hernandez",
"url": "https://github.com/eddywashere"
}
]
}