-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.04 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
{
"name": "kuzzle-plugin-hermes-messenger",
"version": "1.0.0",
"description": "Kuzzle plugin to send messages using various providers like Twilio, Sendgrid, etc",
"author": "The Kuzzle Team <support@kuzzle.io>",
"repository": {
"type": "git",
"url": "https://github.com/kuzzleio/kuzzle-plugin-hermes-messenger"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"docker": "docker compose run kuzzle_node_1 ",
"dev": "NODE_ENV=development ergol tests/application/app.ts -c ergol.config.json",
"prod": "node ./dist/tests/application/app.js",
"test": "jest --runInBand",
"lint": "eslint ./lib ./tests --ext .ts --config .eslintrc.json",
"lint:fix": "eslint ./lib ./tests --ext .ts --config .eslintrc.json --fix",
"prettier": "npx prettier lib/ tests/ --write",
"build": "tsc --build tsconfig.json",
"postinstall": "node -e \"process.exit(require('fs').existsSync('./dist') ? 1 : 0)\" && npm run build || true",
"prepack": "npm run build"
},
"license": "Apache-2.0",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"lodash": "^4.17.21",
"nodemailer": "^6.9.3",
"twilio": "^4.12.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/nodemailer": "^6.4.8",
"cz-conventional-changelog": "^3.3.0",
"ergol": "^1.0.2",
"eslint": "^8.43.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-kuzzle": "^0.0.6",
"jest": "^29.5.0",
"kuzzle": "^2.25.0",
"kuzzle-sdk": "^7.10.8",
"semantic-release-config-kuzzle": "^1.0.0",
"semantic-release-slack-bot": "^4.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"peerDependencies": {
"kuzzle": "^2.14.5"
},
"files": [
"dist/**/*"
]
}