-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "node-red-cpaas-apidaze",
"version": "1.0.1",
"description": "A node-red integration for interacting with Sangoma's APIDAZE",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sipharmony, LLC",
"license": "ISC",
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"bracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"singleAttributePerLine": true
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"apidaze-config": "nodes/apidaze-config.js",
"send-sms": "nodes/sendSms.js"
}
},
"devDependencies": {
"prettier": "^3.2.5"
},
"dependencies": {
"@apidaze/node": "github:apidaze/sdk-node",
"axios": "^1.6.8"
}
}