-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
42 lines (42 loc) · 998 Bytes
/
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
{
"name": "relayserver",
"version": "3.0.0",
"description": "Thinktecture RelayServer enables secure communication from clients - including mobile devices, web, and native applications - to their on-premises backend applications.",
"directories": {
"doc": "docs"
},
"scripts": {
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinktecture/relayserver.git"
},
"keywords": [
"relay",
"connector",
"tenant",
"on-premise",
"proxy",
"gateway"
],
"author": "Thinktecture AG",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/thinktecture/relayserver/issues"
},
"homepage": "https://github.com/thinktecture/relayserver#readme",
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": "prettier --write"
}
}