-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
43 lines (43 loc) · 1021 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
38
39
40
41
42
43
{
"name": "linear-app-discord",
"version": "1.0.1",
"description": "Listen for Linear App events and updates with Discord.",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezolla/linear-app-discord.git"
},
"keywords": [
"Linear",
"LinearApp",
"Discord",
"Webhooks",
"Hooks",
"Issue Tracking",
"Monitoring"
],
"author": "Ethan Zoller",
"license": "MIT",
"bugs": {
"url": "https://github.com/ezolla/linear-app-discord/issues"
},
"homepage": "https://github.com/ezolla/linear-app-discord#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"util": "^0.12.3",
"webhook-discord": "^3.7.4"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.7",
"@types/node-fetch": "^2.5.7",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}