forked from polygon-software/clockify-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "clockify-ts",
"version": "1.2108.13",
"description": "Clockify API wrapper in Typescript",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/*"
],
"scripts": {
"build:esm": "tsc -p tsconfig-esm.json",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build": "tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json",
"test": "jest --runInBand",
"lint": "./node_modules/.bin/eslint",
"lint:report": "./node_modules/.bin/eslint --output-file eslint_report.json --format json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polygon-software/clockify.js.git"
},
"keywords": [
"clockify",
"api",
"javascript",
"typescript"
],
"author": "PolygonSoftware",
"license": "MIT",
"bugs": {
"url": "https://github.com/polygon-software/clockify.js/issues"
},
"homepage": "https://polygon-software.ch/",
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/experimental-utils": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"date-fns": "^2.22.1",
"eslint": "^7.30.0",
"eslint-plugin-sonarjs": "^0.9.1",
"jest": "^27.0.6",
"jest-sonar-reporter": "^2.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/qs": "^6.9.7",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"http-status-codes": "^2.1.4",
"qs": "^6.10.1"
},
"jestSonar": {
"reportPath": "reports/coverage",
"reportFile": "test-report.xml",
"indent": 4
}
}