-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 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
{
"name": "@oneblink/sdk",
"description": "OneBlink SDK to serve as an entry point for all OneBlink Services in NodeJS",
"version": "11.1.0-beta.3",
"author": "OneBlink <[email protected]> (https://oneblink.io)",
"bugs": {
"url": "https://github.com/oneblink/sdk-node-js/issues"
},
"dependencies": {
"@aws-sdk/client-sesv2": "^3.637.0",
"@oneblink/sdk-core": "^7.4.0-beta.3",
"@oneblink/storage": "^3.0.0-beta.1",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"node-fetch": "^2.7.0",
"nodemailer": "^6.9.10",
"uuid": "^9.0.1"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@microsoft/eslint-plugin-sdl": "^0.2.2",
"@oneblink/release-cli": "^3.3.1-beta.2",
"@oneblink/types": "github:oneblink/types",
"@types/content-disposition": "^0.5.8",
"@types/jest": "^29.5.12",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/node-fetch": "^2.6.11",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"fixpack": "^4.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.26.5",
"typescript": "^5.3.3"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"engines": {
"node": ">=18",
"npm": ">=10"
},
"files": [
"tenants"
],
"homepage": "https://oneblink.github.io/sdk-node-js/",
"keywords": [],
"license": "MIT",
"main": "./tenants/oneblink.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oneblink/sdk-node-js.git"
},
"scripts": {
"build": "tsc --build",
"docs": "typedoc",
"eslint": "eslint --fix --cache ./src ./tests",
"fixpack": "fixpack",
"jest": "jest --silent",
"prepare": "npm run build",
"pretest": "npm run eslint && tsc --noEmit && npm run fixpack",
"release": "oneblink-release repository --no-name",
"test": "npm run jest",
"types": "npm i -D github:oneblink/types",
"typescript": "tsc --noEmit",
"update-dependents": "oneblink-release update-dependents"
}
}