-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 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
50
51
52
53
54
55
56
{
"name": "node-red-contrib-mytimeout",
"version": "3.2.3",
"description": "A timer that supports setting the run time by passing JSON to the input",
"main": "mytimeout.js",
"scripts": {
"pretest": "eslint *.js",
"test": "mocha --exit \"test/*_spec.js\"",
"testB": "mocha --timeout 10000 --exit \"test/*_spec.js\"",
"lint": "eslint *.js",
"testA": "mocha ./test/test.js"
},
"keywords": [
"node-red",
"count down timer",
"timer",
"mytimeout",
"timeout",
"cherry"
],
"author": "Neil Cherry",
"license": "MIT",
"bugs": {
"url": "https://github.com/linuxha/node-red-contrib-mytimeout/issues"
},
"node-red": {
"version": ">=1",
"nodes": {
"mytimeout": "mytimeout.js"
}
},
"node-red": {
"version": ">=1"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"node-red": "^1.2.7",
"node-red-node-test-helper": "^0.2.5",
"pkg.json": "^2.0.8",
"should": "^13.2.3"
},
"repository": {
"private": true,
"type": "git",
"url": "git+https://github.com/linuxha/node-red-contrib-mytimeout.git"
},
"homepage": "https://github.com/linuxha/node-red-contrib-mytimeout#readme"
}