This repository was archived by the owner on Feb 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 KB
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
{
"name": "webtask-slackin",
"version": "1.0.0",
"description": "A webtask for sending out automated slack invites based on Slackin",
"private": true,
"scripts": {
"start": "scripts/start",
"stop": "scripts/stop",
"publish": "scripts/publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NotMyself/webtask-slackin.git"
},
"keywords": [
"webtask",
"slack"
],
"author": "Bobby Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/NotMyself/webtask-slackin/issues"
},
"homepage": "https://github.com/NotMyself/webtask-slackin#readme",
"webtaskio": {
"name":"webtask-slackin",
"secrets": [{
"name":"slack_token",
"description": "The Slack authorization token used to access your Slack.",
"placeholder": "Slack Token"
}],
"meta": [{
"name":"team",
"description": "The team name for your slack instance, usually the first segment of your URL.",
"placeholder": "Slack Team Name"
}]
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"webtask-tools": "^3.2.0"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^3.17.0",
"eslint-config-auth0": "^10.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"nodemon": "^1.12.1"
}
}