forked from msigrupo/node-red-contrib-parquet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.12 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": "@snstac/node-red-contrib-parquet",
"version": "1.0.0-beta5",
"description": "Node-RED Node for manipulating Parquet data.",
"license": "MIT",
"url": "https://github.com/snstac/node-red-contrib-parquet",
"homepage": "https://github.com/snstac/node-red-contrib-parquet",
"author": {
"name": "Greg Albrecht",
"email": "[email protected]",
"url": "https://www.snstac.com"
},
"repository": {
"type": "git",
"url": "https://github.com/snstac/node-red-contrib-parquet"
},
"bugs": {
"url": "https://github.com/snstac/node-red-contrib-parquet/issues"
},
"keywords": [
"node-red",
"parquet"
],
"node-red": {
"version": ">=2.0.0",
"nodes": {
"parquet": "nodes/parquet.js"
}
},
"engines": {
"node": ">=16.15.1"
},
"dependencies": {
"@dsnp/parquetjs": "1.3.3"
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-config-google": "^0.14.0",
"jshint": "^2.13.6",
"jslint": "^0.12.1",
"node-red-dev": "^0.1.5",
"prettier": "^2.8.7"
},
"scripts": {
"start": "node-red",
"test": "nyc mocha --exit 'test/**spec.js'"
}
}