-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "node-red-contrib-sequence-detector",
"version": "1.1.2",
"description": "A Node-RED node that inspects all incoming messages in order and matches against the configured sequence.",
"keywords": [
"node-red"
],
"main": "sequence-detector.js",
"scripts": {
"test": "mocha \"test/**/*_spec.js\" --timeout 2000",
"test:watch": "mocha \"test/**/*_spec.js\" -w --timeout 2000"
},
"repository": {
"type": "git",
"url": "https://github.com/kareem613/node-red-contrib-sequence-detector.git"
},
"bugs": {
"url": "https://github.com/kareem613/node-red-contrib-sequence-detector/issues"
},
"author": {
"name": "Kareem Sultan",
"url": "https://maybe5.com//"
},
"license": "ISC",
"node-red": {
"nodes": {
"decoder": "sequence-detector.js"
}
},
"devDependencies": {
"mocha": "~6.2.2",
"node-red": "^0.18.4",
"node-red-node-test-helper": "^0.1.8"
}
}