-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
102 lines (102 loc) · 2.59 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "clockodo",
"version": "0.0.0-semantically-released",
"description": "Unofficial JavaScript/TypeScript SDK for Clockodo",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js",
"./csv": "./dist/csv.js",
"./mocks": "./dist/mocks.js"
},
"typesVersions": {
"*": {
"csv": [
"./dist/csv.d.ts"
],
"mocks": [
"./dist/mocks.d.ts"
]
}
},
"sideEffects": false,
"scripts": {
"prepare": "husky install",
"build": "run-s build:*",
"build:clean": "rimraf dist",
"build:tsc": "tsc",
"test": "run-p test:*",
"test:suite": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test:turkish": "cross-env LC_ALL=tr npm run test:suite -- 'integration' -t 'using a Turkish locale'",
"test:lint": "eslint --max-warnings 0 --cache --ext js,ts --ignore-path .gitignore src",
"test:types": "tsc --noEmit",
"prepublishOnly": "run-s build",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerigon/clockodo.git"
},
"keywords": [
"time tracking",
"api",
"sdk"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerigon/clockodo/issues"
},
"homepage": "https://github.com/peerigon/clockodo#readme",
"dependencies": {
"@faker-js/faker": "^7.6.0",
"axios": "^0.21.4",
"map-obj": "^5.0.1",
"p-limit": "^4.0.0",
"qs": "^6.10.5"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.41",
"@types/qs": "^6.9.7",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"eslint-config-peerigon": "^33.3.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-date-mock": "^1.0.8",
"lint-staged": "^13.0.0",
"nock": "^13.2.6",
"npm-run-all": "^4.1.5",
"pin-github-action": "^1.6.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"timezone-mock": "^1.3.3",
"ts-jest": "^28.0.4",
"ts-jest-resolver": "^2.0.0",
"typescript": "^4.7.3"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --cache --fix"
],
".github/workflows/*.{yml,yaml}": [
"pin-github-action --allow-empty"
],
"*.{json,yml,md}": "prettier --write"
}
}