-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1019 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1019 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
{
"name": "MMM-ClickUPv2-Server",
"version": "1.0.0",
"description": "This is the Web Server portion of the [MMM-ClickUPv2](https://github.com/AndrewMatayka/MMM-ClickUPv2) project. This Web Server required you to enter your ClickUP Client ID, and in return it will give you an Access Code.",
"main": "server.js",
"directories": {
"test": "test"
},
"devDependencies": {
"mocha": "^10.1.0"
},
"scripts": {
"test": "mocha --reporter spec",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewMatayka/MMM-ClickUPv2-Server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndrewMatayka/MMM-ClickUPv2-Server/issues"
},
"homepage": "https://github.com/AndrewMatayka/MMM-ClickUPv2-Server#readme",
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"dependencies": {
"chai": "^4.3.4",
"express": "^4.17.3",
"ip": "^1.1.5",
"request": "^2.88.2"
}
}