-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 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
44
45
46
47
48
{
"name": "node-red-contrib-alasql",
"version": "2.0.1",
"description": "Node-RED wrapper for AlaSQL database and XLSX import/export",
"author": "Mathias Rangel Wulff <[email protected]>, Andrey Gershun <[email protected]>",
"contributors": [
"Kim McKinley <[email protected]> (http://github.com/potofcoffee2go)"
],
"scripts": {
"test-setup": "node ./test/setup",
"test": "node-red -u ./test/flotsam/userdir ./test/flotsam/userdir/alafiletests.json"
},
"dependencies": {
"alasql": "4.6.0",
"fs-extra": "11.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/AlaSQL/node-red-contrib-alasql"
},
"license": "MIT",
"keywords": [
"node-red",
"alasql",
"sql",
"nosql",
"database",
"excel",
"xls",
"xlsx",
"csv",
"json"
],
"node-red": {
"nodes": {
"alasql": "node-red-contrib-alasql.js",
"alafile": "node-red-contrib-alafile.js"
}
},
"prettier": {
"useTabs": true,
"printWidth": 100,
"singleQuote": true,
"arrowParens": "always",
"bracketSpacing": false,
"trailingComma": "es5"
}
}