forked from mrgadget/node-red-contrib-eztimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
49
50
51
52
{
"name": "node-red-contrib-eztimer",
"version": "1.0.10",
"description": "A simple-yet-flexible timer/scheduler for node-red",
"main": "index.js",
"keywords": [
"node-red",
"schedule",
"scheduler",
"timer",
"sun events"
],
"scripts": {
"test": "nyc --reporter=html node_modules/.bin/mocha -R spec ./tests/test.js",
"readme2html": "node_modules/.bin/markdown README.md -f gfm"
},
"author": "@bennuttall",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrgadget/node-red-contrib-eztimer.git"
},
"bugs": {
"url": "https://github.com/mrgadget/node-red-contrib-eztimer/issues"
},
"dependencies": {
"lodash": "^4.17.10",
"moment": "^2.22.1",
"suncalc": "^1.8.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"markdown-to-html": "0.0.13",
"mocha": "^5.1.1",
"node-red-contrib-mock-node": "^0.4.0",
"nsp": "^3.2.1",
"nyc": "^11.8.0",
"prettier": "^1.12.1"
},
"node-red": {
"nodes": {
"eztimer": "index.js"
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"printWidth": 96
}
}