teams-web-send
Version:
Post messages to Microsoft Teams directly from the browser!
68 lines (67 loc) • 1.51 kB
JSON
{
"version": "0.1.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"watch": "tsdx watch --format cjs,esm,umd --name tws",
"build": "tsdx build --format cjs,esm,umd --name tws",
"serve": "browser-sync 'dist' 'resource' -w",
"start": "npm run watch & npm run serve",
"test": "tsdx test --coverage",
"lint": "tsdx lint src",
"prepare": "npm run build",
"size": "size-limit",
"analyze": "size-limit --why",
"clean": "rimraf dist coverage"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "teams-web-send",
"author": "Christopher Luna",
"description": "Post messages to Microsoft Teams directly from the browser!",
"keywords": [
"microsoft teams",
"incoming webhook",
"alert",
"page",
"notification"
],
"module": "dist/tws.esm.js",
"size-limit": [
{
"path": "dist/tws.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/tws.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.7.0",
"browser-sync": "^2.26.13",
"husky": "^4.3.0",
"size-limit": "^4.7.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
}
}