-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
128 lines (128 loc) · 4.01 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "mailgun.js",
"version": "10.2.3",
"main": "./dist/mailgun.node.js",
"browser": "./dist/mailgun.web.js",
"types": "./index.d.ts",
"author": "Mailgun",
"license": "MIT",
"keywords": [
"mailgun",
"email"
],
"private": true,
"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/webpack.dev.config.js --progress --color && npm run build:prepublish",
"build:release": "webpack --config ./webpack/webpack.release.config.js --progress --color && npm run build:prepublish",
"build:prepublish": "node ./SetupPackage.js",
"start": "webpack --watch --config ./webpack/webpack.dev.config.js --progress --color",
"test": "multi='dot=- xunit=./results.xml' nyc --reporter=text-summary --reporter=lcov --report-dir=.coverage mocha -t 10000 -R mocha-multi -r ts-node/register test/*.test.ts",
"test:debug": "multi='dot=- xunit=./results.xml' nyc --reporter=text-summary --reporter=lcov --report-dir=.coverage mocha --inspect-brk -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",
"docs": "typedoc --tsconfig ./tsconfig.json --plugin typedoc-plugin-markdown",
"lint": "eslint . --ext .ts",
"release": "standard-version -a",
"release:test": "standard-version -a --dry-run",
"link": "cd dist && npm link",
"prepare": "husky install"
},
"typescript": {
"definition": "./index.d.ts"
},
"dependencies": {
"axios": "^1.7.4",
"base-64": "^1.0.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^12.1.4",
"@types/base-64": "^1.0.0",
"@types/chai": "^4.2.14",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^8.2.0",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-tsdoc": "^0.2.10",
"form-data": "^3.0.1",
"husky": "^7.0.1",
"json-loader": "^0.5.7",
"mocha": "^10.6.0",
"mocha-multi": "^1.1.7",
"nock": "^13.5.0",
"nyc": "^15.1.0",
"path-browserify": "^1.0.1",
"standard-version": "^9.3.1",
"terser-webpack-plugin": "^5.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.0",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "4.9.x",
"webpack": "^5.94.0",
"webpack-cli": "^4.1.0",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=18.0.0"
},
"contributors": [
{
"name": "Brad Gignac",
"url": "https://github.com/bradgignac"
},
{
"name": "Eddy Hernandez",
"url": "https://github.com/eddywashere"
}
],
"standard-version": {
"types": [
{
"type": "breaking",
"section": "Breaking changes"
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Bug Fixes"
},
{
"type": "other",
"section": "Other changes"
}
],
"commitUrlFormat": "https://github.com/mailgun/mailgun.js/commits/{{hash}}",
"compareUrlFormat": "https://github.com/mailgun/mailgun.js/compare/{{previousTag}}...{{currentTag}}",
"scripts": {
"prerelease": "npm test && npm run build:release && npm run docs",
"postchangelog": "npm run build:prepublish && git add -A dist && git add -A docs",
"posttag": "git push && git push --tags && rm -rf build"
}
}
}