-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.12 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
{
"name": "@churchtools/churchtools-client",
"version": "1.3.12",
"description": "Client library to interact with a ChurchTools Server.",
"main": "dist/churchtools-client.node.js",
"browser": "dist/churchtools-client.js",
"types": "dist/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/**/*.js"
},
"keywords": [
"churchtools",
"client"
],
"author": "David Schilling <[email protected]>",
"license": "Apache-2.0",
"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",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"babel-loader": "^8.2.5",
"ts-loader": "^9.4.2",
"eslint": "^4.19.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"axios": "^0.24.0",
"axios-logger": "^2.5.0"
},
"jest": {
"testURL": "http://localhost/",
"testEnvironment": "node",
"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"
}