-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
37 lines (37 loc) · 870 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
{
"name": "slack-notify",
"description": "A simple Node.js wrapper around the Slack webhook API.",
"version": "2.0.7",
"repository": "https://github.com/andrewchilds/slack-notify.git",
"homepage": "https://github.com/andrewchilds/slack-notify",
"main": "./src/esm/index.mjs",
"types": "./src/index.d.ts",
"author": {
"name": "Andrew Childs",
"email": "tidy.desk9426@fastmail.com"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"require": "./src/cjs/index.js",
"default": "./src/esm/index.mjs"
}
},
"scripts": {
"test": "./node_modules/jasmine/bin/jasmine.js"
},
"keywords": [
"slack",
"alerts",
"notifications"
],
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": ">=13.2.x"
},
"dependencies": {},
"devDependencies": {
"jasmine": "4.0.1"
}
}