-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 843 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 843 Bytes
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
{
"name": "node-red-contrib-jsonstat",
"description": "A collection of Node-RED nodes that helps you with jsonstat formatted data",
"version": "0.0.1",
"author": "Eirik Hodne",
"repository": "github:eithe/node-red-contrib-jsonstat",
"license": "MIT",
"dependencies": {
"jsonstat": "0.13.3"
},
"devDependencies": {
"coveralls": "^3.0.2",
"mocha": "~5.2.0",
"node-red": "~0.19.5",
"node-red-node-test-helper": "~0.1.8",
"nyc": "^13.1.0"
},
"keywords": [
"node-red",
"jsonstat"
],
"scripts": {
"test": "nyc mocha \"test/**/*_spec.js\"",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"node-red": {
"nodes": {
"jsonstat-data": "nodes/jsonstat-data.js",
"jsonstat-category": "nodes/jsonstat-category.js"
}
}
}