-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "drupalorg-slack",
"version": "1.0.1",
"description": "App to pull an organization's data from Drupal.org and send to Slack.",
"author": {
"name": "Mark Dorison",
"email": "mark@chromatichq.com",
"url": "https://chromatichq.com"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express",
"slack",
"drupal"
],
"homepage": "https://github.com/ChromaticHQ/drupalorg-slack#readme",
"bugs": "https://github.com/ChromaticHQ/drupalorg-slack/issues",
"repository": {
"url": "https://github.com/ChromaticHQ/drupalorg-slack"
},
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint --fix '**/*.js'",
"test": "npm run lint"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@slack/bolt": "^2.6.1",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.10",
"lowdb": "^1.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0"
}
}