-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.41 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.41 KB
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
{
"name": "@churchtools/churchtools-client",
"version": "1.6.0",
"description": "Client library to interact with a ChurchTools Server.",
"main": "dist/churchtools-client.js",
"browser": "dist/churchtools-client.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "webpack",
"watch": "webpack --watch",
"prettier": "prettier --write \"src/**/*.ts\"",
"prettier-list-different": "prettier --list-different \"src/**/*.ts\"",
"eslint": "eslint src/**/*.ts",
"check:types": "tsc --noEmit"
},
"keywords": [
"churchtools",
"client"
],
"author": "David Schilling <dschilling@churchtools.de>",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"axios": "^1.9.0",
"axios-logger": "^2.8.1"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"babel-loader": "^8.2.5",
"eslint": "^8.57.1",
"form-data": "^4.0.2",
"jest": "^29.5.0",
"msw": "^2.8.2",
"prettier": "^3.5.3",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"jest": {
"testEnvironment": "node",
"testEnvironmentOptions": {
"url": "http://localhost/"
},
"transform": {
"^.+\\.(ts)$": "ts-jest",
"^.+\\.(js)$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/churchtools/churchtools-js-client.git"
},
"bugs": {
"url": "https://github.com/churchtools/churchtools-js-client/issues"
},
"homepage": "https://github.com/churchtools/churchtools-js-client#readme"
}