-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 KB
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
{
"name": "node-red-contrib-bitunloader",
"version": "0.4.1",
"description": "Unload numbers to a binary string, array of bits, array of bools, object of bits, or object of bools.",
"main": "",
"scripts": {
"test": "mocha \"test/*_spec.js\""
},
"author": "gemini86",
"license": "BSD-2-Clause",
"keywords": [
"node-red",
"bit",
"binary",
"bool",
"boolean",
"parse"
],
"node-red": {
"nodes": {
"bitunloader": "src/bitunloaderNode.js",
"bitreloader": "src/bitreloaderNode.js"
}
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-html": "^6.0.0",
"mocha": "^7.0.0",
"node-red": "^0.18.7",
"node-red-node-test-helper": "^0.1.8",
"should": "^13.2.3"
},
"dependencies": {
"bitunloader": "1.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini86/node-red-contrib-bitunloader.git"
},
"bugs": {
"url": "https://github.com/gemini86/node-red-contrib-bitunloader/issues"
},
"homepage": "https://github.com/gemini86/node-red-contrib-bitunloader#readme",
"directories": {
"examples": "examples",
"test": "test",
"src": "src"
}
}