-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.54 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@verkkokauppacom/teams-logger",
"version": "4.0.0",
"description": "Send messages to Microsoft Teams via a custom incoming webhook",
"author": "Iiro Jäppinen <[email protected]>",
"license": "MIT",
"repository": "github:verkkokauppacom/teams-logger",
"bugs": "https://github.com/verkkokauppacom/teams-logger/issues",
"main": "index.js",
"engines": {
"node": ">= 10"
},
"bin": {
"teams-logger": "bin/teams-logger.js"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js",
"index.d.ts",
"index.js"
],
"types": "index.d.ts",
"scripts": {
"lint:base": "eslint --ext .js,.ts",
"lint": "npm run lint:base .",
"build": "tsc --build",
"test": "jest --coverage",
"version": "standard-version --no-verify"
},
"jest": {
"collectCoverageFrom": [
"./bin/!(*.d).ts",
"./lib/!(*.d).ts"
],
"preset": "ts-jest",
"testEnvironment": "node"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts}": "npm run lint:base -- --fix"
},
"standard-version": {
"scripts": {
"prerelease": "npm run lint && npm test && npm run build"
}
},
"dependencies": {
"pipe-args": "^1.3.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "27.0.1",
"@types/sinon": "10.0.2",
"@types/tape": "4.13.2",
"@types/yargs": "17.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"commitlint": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"execa": "^5.1.1",
"husky": "^7.0.1",
"jest": "27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"ts-jest": "27.0.5",
"ts-node": "10.2.0",
"typescript": "^4.3.5"
},
"keywords": [
"Connector",
"Incoming Webhook",
"Markdown",
"Message",
"Microsoft Teams",
"Microsoft",
"Office 365 Connector",
"Teams",
"Webhook"
]
}