-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 855 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 855 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
{
"name": "@app-masters/hubstaff-node-client",
"version": "2.0.2",
"description": "Simple library to access hubstaff API.",
"main": "dist/Hubstaff.js",
"types": "dist/Hubstaff.d.ts",
"keywords": ["Javascript", "nodeJS", "hubstaff", "API", "Client"],
"repository": {
"type": "git",
"url": "git+https://github.com/app-masters/hubstaff-node-client.git"
},
"dependencies": {
"axios": "^0.21.0",
"jwt-decode": "^3.1.2",
"request": "^2.88.2"
},
"scripts": {
"prepare": "yarn build",
"dev": "npx ts-node src/index.ts",
"build": "tsc",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}