-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1023 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1023 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "node-red-contrib-rtm",
"version": "1.2.2",
"description": "Node-RED nodes for Remember the Milk (RTM)",
"license": "MIT",
"author": "Krzysztof Jamroz <jamro@jamro.net>",
"repository": {
"type": "git",
"url": "https://github.com/jamro/node-red-contrib-rtm.git"
},
"keywords": [
"node-red",
"nodes",
"rtm"
],
"main": "none",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-simple-mocha": "^0.4.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"node-red": "^0.16.2"
},
"engines": {
"node": ">=0.10"
},
"node-red": {
"nodes": {
"RTM": "nodes/rtm.js",
"RTM Auth": "nodes/rtm_auth.js",
"RTM Call": "nodes/rtm_call.js",
"RTM Add Task": "nodes/rtm_add_task.js",
"RTM Search": "nodes/rtm_search.js"
}
},
"dependencies": {
"md5": "^2.2.1",
"rtm-js": "^1.0.2"
}
}