-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.06 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
{
"name": "@timetac/js-client-library",
"version": "2.84.2",
"description": "TimeTac API JS client library",
"homepage": "https://github.com/TimeTac/js-client-library#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/TimeTac/js-client-library.git"
},
"keywords": [
"timetac",
"api",
"client"
],
"author": "TimeTac GmbH <[email protected]> (https://timetac.com)",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest --no-cache",
"coverage": "jest --no-cache --coverage=true",
"lint": "eslint --max-warnings=0 src",
"lintfix": "eslint --max-warnings=0 src --fix",
"prettycheck": "prettier -c 'src/**/*.{ts,js,css,html}'",
"prettyfix": "prettier --write 'src/**/*.{ts,js,css,html}'",
"compile": "tsc -p tsconfig.json && tsc -p esm.tsconfig.json",
"prepare": "yarn run compile"
},
"dependencies": {
"axios": "^1.7.4",
"typescript": "^5.4.3"
},
"devDependencies": {
"@eslint/compat": "^1.0.3",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"axios-mock-adapter": "^1.22.0",
"cross-env": "^7.0.3",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky-v4": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"typescript-eslint": "^7.12.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint && yarn prettycheck && yarn compile && yarn test"
}
},
"lint-staged": {
"*.{js,css,md,ts,jsx,tsx,yml}": "prettier --write"
},
"bugs": {
"url": "https://github.com/TimeTac/js-client-library/issues"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
".(ts|tsx)": "ts-jest"
}
},
"packageManager": "[email protected]"
}