-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "@sinch/node-red-conversation-api",
"version": "1.0.3",
"author": "Sinch AB",
"description": "Package of Sinch messaging nodes for Node-RED",
"homepage": "https://www.sinch.com/",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sinch/node-red-conversation-api.git"
},
"keywords": [
"node-red"
],
"scripts": {
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore --ext .js .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha test/**/*_spec.js"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"sinch-convapi-configuration": "src/configuration-nodes/conversation-api/conversation-api.js",
"sinch-events": "src/nodes/events/events.js",
"sinch-received-message": "src/nodes/received-message/received-message.js",
"sinch-message": "src/nodes/message/message.js",
"sinch-send": "src/nodes/send/send.js",
"sinch-start-conversation": "src/nodes/start-conversation/start-conversation.js",
"sinch-template": "src/nodes/template/template.js",
"sinch-api": "src/apis/index.js"
}
},
"devDependencies": {
"chai": "4.3.7",
"eslint": "5.16.0",
"eslint-config-nodejs": "2.0.0",
"eslint-config-prettier": "6.2.0",
"eslint-plugin-html": "5.0.5",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-security": "1.4.0",
"mocha": "9.2.2",
"node-red": "3.0.0",
"node-red-node-test-helper": "0.2.7",
"prettier": "1.18.2"
},
"dependencies": {
"got": "11.8.1",
"mustache": "4.2.0"
}
}