-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 1.73 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
{
"name": "bexio",
"version": "3.1.1",
"description": "NPM Package for the api of bexio.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"bexio",
"bexioAPI",
"bexio.com",
"office.bexio.com"
],
"scripts": {
"test": "jest",
"report": "./node_modules/.bin/codecov",
"build": "./node_modules/.bin/tsc",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathewmeconry/bexio.git"
},
"author": "Mathias Scherer <scherer.mat@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathewmeconry/bexio/issues"
},
"homepage": "https://github.com/mathewmeconry/bexio#readme",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/chance": "^1.1.0",
"@types/dotenv": "^6.1.1",
"@types/jest": "^26.0.10",
"@types/node": "^12.6.2",
"chance": "^1.1.7",
"codecov": "^3.6.1",
"jest": "^26.4.2",
"jest-html-reporters": "^2.0.3",
"jest-junit": "^11.1.0",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"jest": {
"collectCoverage": true,
"transform": {
".(ts|tsx)": "ts-jest"
},
"testMatch": [
"**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"feature"
],
"reporters": [
"default",
"jest-html-reporters",
"jest-junit"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"html"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!**/node_modules/**",
"!**/coverage/**"
],
"roots": [
"./src"
]
}
}