-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "@sendinblue/client",
"version": "3.1.0",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sendinblue/APIv3-typescript-library.git"
},
"author": {
"name": "SendinBlue",
"email": "[email protected]",
"url": "https://www.sendinblue.com/"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"lodash": "^4.17.21",
"request": "^2.81.0"
},
"devDependencies": {
"@types/bluebird": "*",
"@types/request": "*",
"@types/node": "*",
"@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": "^3.5.1"
}
}