-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1012 Bytes
/
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
{
"name": "clickup.js",
"version": "3.0.4",
"description": "A Node.js wrapper for the Clickup API",
"main": "src/index.js",
"keywords": [
"clickup",
"clickupjs",
"clickup-js",
"clickup.js",
"api",
"wrapper",
"wrapper-api"
],
"scripts": {
"test": "mocha",
"lint": "eslint src test --fix",
"format": "prettier --write ."
},
"dependencies": {
"form-data": "^4.0.0",
"got": "^11.8.2"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"sinon": "^12.0.1"
},
"author": "@ComfortablyCoding",
"repository": {
"type": "git",
"url": "https://github.com/ComfortablyCoding/clickup.js.git"
},
"homepage": "https://github.com/ComfortablyCoding/clickup.js#readme",
"bugs": {
"url": "https://github.com/ComfortablyCoding/clickup.js/issues"
},
"license": "MIT"
}