-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "@foxleigh81/node-red-contrib-todoist-api",
"version": "1.1.1",
"description": "Todoist API interaction nodes for Node-RED",
"node-red": {
"nodes": {
"add-todoist-api-token": "./nodes/config.js",
"todoist-task-get": "./nodes/get-task.js",
"todoist-task-get-all": "./nodes/get-all-tasks.js",
"todoist-task-create": "./nodes/create-task.js",
"todoist-task-update": "./nodes/update-task.js",
"todoist-task-complete": "./nodes/complete-task.js",
"todoist-task-reopen": "./nodes/reopen-task.js",
"todoist-task-delete": "./nodes/delete-task.js",
"todoist-project-get-all": "./nodes/get-all-projects.js",
"todoist-query-api": "./nodes/query.js"
}
},
"license": "MIT",
"homepage": "https://github.com/foxleigh81/node-red-contrib-todoist-api#readme",
"authors": {
"name": "Alex Foxleigh",
"email": "[email protected]",
"url": "https://alexfoxleigh.com/"
},
"keywords": [
"Todoist",
"node-red"
],
"repository": {
"type": "git",
"url": "https://github.com/foxleigh81/node-red-contrib-todoist-api.git"
},
"dependencies": {
"axios": "^0.25.0",
"husky": "^7.0.4",
"prettier": "^2.5.1"
},
"scripts": {
"lint": "eslint .",
"prettier": "prettier --write .",
"postinstall": "husky install"
},
"devDependencies": {
"eslint": "^8.10.0"
}
}