-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 896 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
32
33
34
35
{
"name": "ifttt-webhooks-channel",
"version": "2.0.0",
"description": "Tiny package to trigger an IFTTT event using the webhooks channel",
"main": "ifttt.js",
"type": "module",
"files": [
"modules/**/*",
"ifttt.js",
"ifttt.d.ts"
],
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest",
"lint": "standard",
"prepublishOnly": "npm run lint && npm test"
},
"devDependencies": {
"jest": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"standard": "^17.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeroentvb/ifttt-webhooks-channel.git"
},
"keywords": [
"ifttt"
],
"author": "jeroentvb",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeroentvb/ifttt-webhooks-channel/issues"
},
"homepage": "https://github.com/jeroentvb/ifttt-webhooks-channel#readme"
}