-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 969 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
{
"name": "heuristicalert",
"version": "0.1.2",
"description": "Instant access to twitter relavent to your business/interest",
"main": "index.js",
"author": "remotehour",
"license": "MIT",
"bin": {
"heuristicalert": "./bin/heuristicalert.js"
},
"scripts": {
"dev": "nodemon --ext ts --exec 'yarn build && bin/heuristicalert.js test.yml'",
"build": "tsc",
"prepare": "tsc"
},
"dependencies": {
"@slack/webhook": "^6.0.0",
"bluebird": "^3.7.2",
"dotenv": "^9.0.1",
"got": "^11.7.0",
"js-yaml": "^4.0.0",
"node-cron": "^3.0.0",
"pino": "^6.7.0",
"pino-pretty": "^4.3.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/js-yaml": "^4.0.1",
"@types/node-cron": "^2.0.3",
"@types/pino": "^6.3.2",
"@types/twitter": "^1.7.0",
"nodemon": "^2.0.5",
"typescript": "^4.0.3"
},
"files": [
"bin/heuristicalert.js",
"dist/*"
]
}