-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 812 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 812 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
{
"name": "toggl-api",
"description": "Toggl API for Node.js",
"version": "2.0.0-beta.0",
"main": "./lib/client.js",
"keywords": [
"api",
"toggl",
"timetracking"
],
"repository": {
"type": "git",
"url": "git://github.com/7eggs/node-toggl-api.git"
},
"dependencies": {
"custom-error-generator": "^7.0.0",
"object-assign": "^4.0.1",
"request": "^2.67.0"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"request-debug": "^0.2.0"
},
"author": "Alexander Makarenko <estliberitas@gmail.com>",
"contributors": [
"Mark Dickson Jr <markdicksonjr@gmail.com>",
"Rafael Figueira Goncalves <clicnet.com.br@gmail.com>"
]
}