-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 940 Bytes
/
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
{
"name": "fastify-msgraph-change-notifications-webhook",
"version": "0.1.2",
"description": "Fastify plugin implementing MS Graph Change Notifications webhook.",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint . --ext .js",
"test": "npm run lint && TAP_TIMEOUT=30000 tap -b tests/*.test.js tests/**/*.test.js"
},
"author": "Giovanni Fiordeponti",
"license": "MIT",
"dependencies": {
"fastify-plugin": "^4.5.1"
},
"homepage": "https://github.com/flower-of-the-bridges/fastify-msgraph-change-notifications-webhook.git#readme.md",
"repository": {
"type": "git",
"url": "git+https://github.com/flower-of-the-bridges/fastify-msgraph-change-notifications-webhook.git"
},
"devDependencies": {
"eslint": "^8.55.0",
"fastify": "^4.24.3",
"sinon": "^17.0.1",
"tap": "^18.6.1"
},
"publishConfig": {
"access": "public"
}
}