-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.14 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@trieb.work/zoho-ts",
"version": "0.0.0-development",
"description": "Node Library for Zoho Inventory, Invoice and Zoho Books",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/trieb-work/zoho-ts.git"
},
"author": "Jannik Zinkl | trieb.work",
"license": "MIT",
"keywords": [
"Zoho",
"Node",
"Typescript",
"Zoho Inventory",
"zoho",
"inventory",
"books",
"invoice",
"Zoho Invoice"
],
"scripts": {
"build": "tsc",
"dev": "pnpm tsc --watch --preserveWatchOutput",
"prepublish": "pnpm build",
"format": "prettier --write .",
"fmt": "pnpm lint && pnpm format",
"lint": "eslint . --ext ts --ext tsx --ext js --fix",
"test": "jest",
"semantic-release": "semantic-release"
},
"dependencies": {
"async-retry": "^1.3.3",
"await-timeout": "^1.1.1",
"axios": "^1.4.0",
"axios-retry": "^3.4.0",
"date-fns": "^2.30.0",
"dayjs": "^1.11.7",
"form-data": "^4.0.0",
"http": "0.0.1-security",
"https": "^1.0.0",
"simple-oauth2": "^5.0.0",
"stream": "^0.0.2",
"ts-mixer": "^6.0.3",
"zlib": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/config-conventional": "^17.7.0",
"@trieb.work/eslint-config-base": "^1.13.4",
"@trieb.work/prettier-base": "^0.3.1",
"@trieb.work/tsconfig-base": "^1.6.5",
"@types/async-retry": "^1.4.5",
"@types/await-timeout": "^0.3.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/simple-oauth2": "^5.0.4",
"babel-jest": "^29.7.0",
"commitlint": "^17.6.1",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.0",
"semantic-release": "^21.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}