-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "easybill-client",
"version": "1.3.41",
"description": "Node client for easybill API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rimraf ./dist",
"compile": "tsc -p tsconfig.json",
"tsc:check": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier **/*.{ts,json} --check",
"format:fix": "prettier **/*.{ts,json} --write",
"prepare": "husky install",
"types:generate": "npx openapi-typescript https://api.easybill.de/rest/v1/swagger.json -o src/generated/types.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gastromatic/easybill-client.git"
},
"keywords": [
"javascript",
"typescript",
"node.js",
"easybill"
],
"author": "Khanh Luu",
"license": "MIT",
"bugs": {
"url": "https://github.com/gastromatic/easybill-client/issues"
},
"homepage": "https://github.com/gastromatic/easybill-client#readme",
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"rimraf": "5.0.10",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"axios": "1.7.7",
"bottleneck": "2.19.5",
"winston": "3.17.0"
}
}