-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "node-red-contrib-line-messaging-api",
"version": "0.2.2",
"description": "Node-REDでLINE Botが作れます。",
"main": "line.js",
"repository": {
"type": "git",
"url": "git+https://github.com/n0bisuke/node-red-contrib-line-messaging-api.git"
},
"scripts": {
"deploy": "git add -A && git commit -m 'update' && git push origin main",
"test": "echo \"Error: no test specified\" && exit 1"
},
"node-red": {
"nodes": {
"Webhook": "./nodes/webhook/webhook.js",
"ReplyMessage": "./nodes/reply/reply.js",
"PushMessage": "./nodes/push/push.js",
"BloadcastMessage": "./nodes/bloadcast/bloadcast.js",
"Limit": "./nodes/limit/limit.js",
"Notify": "./nodes/notify/notify.js",
"Notify_New": "./nodes/_new/notify/notify.js",
"ReplyMessage_New": "./nodes/_new/reply/reply.js",
"PushMessage_New": "./nodes/_new/push/push.js"
}
},
"keywords": ["node-red"],
"author": "n0bisuke",
"license": "Apache 2.0",
"dependencies": {
"@line/bot-sdk": "^7.2.0",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"express": "^4.17.1"
}
}