-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 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
{
"name": "google-chat-webhook",
"version": "1.0.0",
"description": "An SDK for Google Chat webhooks",
"main": "./dist/library.js",
"scripts": {
"singletest": "mocha --require ts-node/register --extensions ts,tsx --watch --watch-files src",
"test": "nyc mocha --exit --require ts-node/register --extensions ts,tsx --timeout 0 './src/**/*.spec.{ts,tsx}'",
"lint": "prettier --check ./src",
"build": "tsc",
"sample": "cd sample && ts-node index.ts"
},
"repository": {
"type": "git",
"url": "git@github.com:bevelop-official/google-chat-webhook.git"
},
"keywords": [
"google-chat",
"gsuite",
"sdk",
"webhook",
"node",
"typescript"
],
"author": "Max Sommer; bevelop GmbH",
"license": "GPL-3.0-or-later",
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^0.21.1"
},
"devDependencies": {
"@types/hapi__joi": "^16.0.12",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.31",
"@types/simple-mock": "^0.8.1",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prettier": "2.0.2",
"simple-mock": "^0.8.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"dist/*",
"**/*.d.ts",
"**/*.spec.ts"
],
"reporter": [
"text"
],
"all": true
}
}