-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
{
"name": "msteams-message-cards",
"version": "1.0.1",
"description": "A javascript library to create and message cards and send them to a MS Teams webhook.",
"author": "Simon Lepel <simbo@simbo.de> (https://simbo.de/)",
"license": "MIT",
"keywords": [
"teams",
"msteams",
"message",
"card",
"message card",
"notification"
],
"homepage": "https://github.com/simbo/msteams-message-cards#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/simbo/msteams-message-cards.git"
},
"bugs": {
"url": "https://github.com/simbo/msteams-message-cards/issues"
},
"engines": {
"node": ">=16"
},
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "rm -rf dist && tsc --project ./tsconfig.dist.json",
"lint": "eslint -c .eslintrc.json .",
"lint:fix": "eslint -c .eslintrc.json --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"preflight": "npm run lint && npm run format && npm run test && npm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
"test:watch": "npm run test -- --watch",
"test-run": "ts-node-esm ./test-run/index.ts",
"upgrade": "npx --yes npm-check-updates -u -t minor && npx --yes npm-check-updates --interactive --reject typescript,@types/node && npm i"
},
"dependencies": {
"color-name-to-code": "^1.0.1",
"encode-emojis": "^1.0.2",
"joi": "^17.9.2",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@types/jest": "^29.5.1",
"@types/node": "^16.18.25",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unicorn": "^46.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}