forked from sendinblue/APIv3-typescript-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
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
{
"name": "@sharekey/sendinblue-client",
"version": "3.3.4",
"description": "NodeJS client for Sendinblue V3 api",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"scripts": {
"clean": "rimraf -rf dist/",
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prepublishOnly": "npm run clean && npm run build"
},
"files": [
"dist/*",
"package.json",
"README"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sharekey/APIv3-typescript-library.git"
},
"author": "Sharekey <admin@sharekey.com>",
"license": "MIT",
"dependencies": {
"@types/bluebird": "*",
"@types/request": "*",
"axios": "^1.13.5",
"bluebird": "^3.5.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/bluebird": "*",
"@types/node": "*",
"@types/request": "*",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-plugin-unused-imports": "^1.1.0",
"minimist": "^1.2.5",
"rimraf": "^3.0.2",
"typescript": "^5.1.6"
}
}