-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
125 lines (125 loc) · 4.47 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
{
"name": "node-mailjet",
"version": "6.0.6",
"main": "./dist/mailjet.node.js",
"browser": "./dist/mailjet.web.js",
"types": "./dist/declarations/index.d.ts",
"description": "Mailjet API client",
"author": "Mailjet",
"license": "MIT",
"private": true,
"keywords": [
"email",
"sms",
"node",
"mail",
"mailjet"
],
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.9.0"
},
"files": [
"lib/**",
"dist/**"
],
"directories": {
"lib": "./lib",
"docs": "./docs"
},
"typescript": {
"definition": "./dist/declarations/index.d.ts"
},
"scripts": {
"test": "npm run ts:mocha test/",
"test:int": "npm run ts:mocha test/integration/",
"test:unit": "npm run ts:mocha test/unit/",
"test:watch": "mocha --extension ts -r tsconfig-paths/register -r ts-node/register --watch",
"cover": "npm run cover:expandable npm run test",
"cover:int": "npm run cover:expandable npm run test:int",
"cover:unit": "npm run cover:expandable npm run test:unit",
"cover:expandable": "nyc --reporter=text-summary --reporter=lcov --report-dir=.coverage --temp-dir=./.coverage/.nyc_output",
"build": "npm run build:release && npm run build:prepublish",
"build:dev": "webpack --config ./webpack/webpack.dev.config.js --progress --color",
"build:release": "webpack --config ./webpack/webpack.release.config.js --progress --color",
"build:prepublish": "node ./scripts/PreparePackage.js",
"build:watch": "webpack --watch --config ./webpack/webpack.dev.config.js --progress --color",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:errors": "eslint --quiet .",
"ts:run": "ts-node --transpileOnly --project ./tsconfig.json -r tsconfig-paths/register",
"ts:watch": "ts-node-dev --respawn --transpile-only --project ./tsconfig.json -r tsconfig-paths/register",
"ts:mocha": "mocha --extension ts --recursive -r tsconfig-paths/register -r ts-node/register",
"ts:patch": "ts-patch install -s",
"init": "npm install && npm run ts:patch && npm run pkg:prepare",
"pkg:link": "cd ./dist && npm link && echo '\n=== link name: node-mailjet ==='",
"pkg:prepare": "husky install",
"pkg:precommit": "npm audit && npm run lint:errors && npm run test",
"release": "standard-version -a",
"release:dry": "standard-version --dry-run",
"release:quiet": "standard-version --no-verify -a",
"release:minor": "standard-version -a --release-as minor",
"release:patch": "standard-version -a --release-as patch",
"release:major": "standard-version -a --release-as major",
"docs": "typedoc --tsconfig ./tsconfig.json"
},
"dependencies": {
"axios": "1.7.4",
"json-bigint": "^1.0.0",
"url-join": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/chai": "^4.3.1",
"@types/json-bigint": "^1.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"@types/qs": "^6.9.7",
"@types/superagent": "^4.1.15",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"babel-loader": "^8.2.5",
"chai": "^4.1.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-tsdoc": "^0.2.16",
"husky": "^8.0.1",
"mocha": "^9.0.0",
"nock": "^13.2.4",
"nyc": "^15.1.0",
"qs": "^6.5.0",
"standard-version": "^9.5.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"ts-patch": "^2.0.1",
"tsconfig-paths": "^4.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.4",
"typescript-transform-paths": "^3.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"homepage": "https://github.com/mailjet/mailjet-apiv3-nodejs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mailjet/mailjet-apiv3-nodejs.git"
},
"bugs": {
"url": "https://github.com/mailjet/mailjet-apiv3-nodejs/issues"
},
"contributors": [
"Arnaud Breton <[email protected]> (https://github.com/arnaudbreton)",
"Nicholas Smith <[email protected]> (https://github.com/safani)",
"Jérémie Parker <[email protected]> (https://github.com/p-j)"
]
}